Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Updates for the March 2021 training session.
Updates for the March 2021 training session.
- Loading branch information
Showing
19 changed files
with
1,510 additions
and
2,381 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
@@ -2,6 +2,7 @@ AWS-Trng-1.pem | ||
bin | ||
include | ||
lib | ||
lib64 | ||
share | ||
ssh_config | ||
ssh_mux* | ||
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
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
@@ -0,0 +1,72 @@ | ||
--- | ||
|
||
# This encrypted version of the training password is created by running | ||
# | ||
# ansible-vault encrypt_string 'THE_PASSWORD' --name 'comanage_training_password' | ||
comanage_training_password: !vault | | ||
$ANSIBLE_VAULT;1.1;AES256 | ||
31636362373339666232313164373435343362373936613838393035663732623533616238373564 | ||
3637653337636564616131663831346531363033396266330a613162666636666235333135383631 | ||
64633832633837363263653462306361636338643964326531393133643063353738626165613132 | ||
6462336164333237340a393062353239306564303838366264636230643136393033623064343661 | ||
6431 | ||
# It should not be necessary to change the password salt. | ||
comanage_training_password_salt: !vault | | ||
$ANSIBLE_VAULT;1.1;AES256 | ||
39623864653434666530376532373536616136303833383862663631333439393833656436353661 | ||
3765313563653037623737373563326235646439633635640a643165313437343966376661373862 | ||
61363564353632383964393439656565326161326338323131373464313736373761666164633837 | ||
3062623335653037650a383538633936386537333865306230323162656434326634323139396461 | ||
64663664306265623839363736343361313635313638633863363131323635333466 | ||
comanage_training_region: "us-west-2" | ||
|
||
r53_hosted_zone: incommon.training | ||
r53_dns_domain: "comanage.{{ r53_hosted_zone }}" | ||
|
||
# The full ARN for an X.509 wildcard certificate provisioned by the | ||
# AWS Certificate Manager for domain *.comanage.incommong.training | ||
aws_cert_manager_cert_arn: "arn:aws:acm:us-west-2:626413038627:certificate/162508f9-f5e4-479d-bdb8-f614d8a7ccb0" | ||
|
||
vpc_cidr_block: 192.168.0.0/16 | ||
|
||
# We need to have at least two private subnets across two availability | ||
# zones. The application load balancer requires it. | ||
vpc_availability_zone: | ||
a: | ||
public_subnet: 192.168.10.0/24 | ||
private_subnet: 192.168.110.0/24 | ||
bastion_ip: 192.168.10.10 | ||
bastion_hostname: ssh | ||
b: | ||
public_subnet: 192.168.11.0/24 | ||
private_subnet: 192.168.111.0/24 | ||
bastion_ip: 192.168.11.10 | ||
bastion_hostname: ssh-b | ||
|
||
ssh_bastion_instance_type: t2.nano | ||
# Most current CentOS 7 x86_64, see https://wiki.centos.org/Cloud/AWS#Finding_AMI_ids | ||
ssh_bastion_ami_id: ami-0a4497cbe959da512 | ||
ssh_bastion_user: centos | ||
ssh_bastion_device_name: /dev/sda1 | ||
ssh_bastion_volume_type: gp2 | ||
ssh_bastion_volume_size: 10 | ||
|
||
idp_node_instance_type: t2.small | ||
# Most current CentOS 7 x86_64, see https://wiki.centos.org/Cloud/AWS#Finding_AMI_ids | ||
idp_node_ami_id: ami-0a4497cbe959da512 | ||
idp_node_user: centos | ||
idp_node_device_name: /dev/sda1 | ||
idp_node_volume_type: gp2 | ||
idp_node_volume_size: 20 | ||
|
||
training_node_count: 2 | ||
|
||
training_node_instance_type: t2.small | ||
# Most current CentOS 7 x86_64, see https://wiki.centos.org/Cloud/AWS#Finding_AMI_ids | ||
training_node_ami_id: ami-0a4497cbe959da512 | ||
training_node_user: centos | ||
training_node_device_name: /dev/sda1 | ||
training_node_volume_type: gp2 | ||
training_node_volume_size: 20 |
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
Oops, something went wrong.