-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Whitelist Ansible task config.yml in gitignore
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
# Copyright 2018 Banco Bilbao Vizcaya Argentaria, S.A. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
- name: Create certs & key dif | ||
file: | ||
path: config_files | ||
state: directory | ||
|
||
- name: Create private key | ||
shell: ssh-keygen -t ed25519 -f config_files/id_ed25519 -P '' | ||
args: | ||
creates: config_files/id_ed25519 | ||
|
||
- name: Create SSL certs | ||
shell: > | ||
openssl req \ | ||
-newkey rsa:2048 \ | ||
-nodes \ | ||
-days 3650 \ | ||
-x509 \ | ||
-keyout config_files/ca.key \ | ||
-out config_files/ca.crt \ | ||
-subj "/CN=*" | ||
openssl req \ | ||
-newkey rsa:2048 \ | ||
-nodes \ | ||
-keyout config_files/server.key \ | ||
-out config_files/server.csr \ | ||
-subj "/C=GB/ST=London/L=London/O=Global Security/OU=IT Department/CN=*" | ||
openssl x509 \ | ||
-req \ | ||
-days 365 \ | ||
-sha256 \ | ||
-in config_files/server.csr \ | ||
-CA config_files/ca.crt \ | ||
-CAkey config_files/ca.key \ | ||
-CAcreateserial \ | ||
-out config_files/server.crt \ | ||
## Not present in all OpenSSL version | ||
## -extfile <(echo subjectAltName = IP:127.0.0.1) | ||
args: | ||
creates: config_files/server.crt | ||
|