Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ec2 subnet lookup pr devel #579

Merged
merged 33 commits into from
Feb 9, 2022
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
195ff54
Need to check if is_local is defined in webserver meta dependencies. …
EmlynK Jan 5, 2022
a21e8d1
Ce dev refactor pr 1.x (#518)
gregharvey Jan 5, 2022
cb681f8
Adding backup handling to ldap_server. (#525)
gregharvey Jan 10, 2022
f134be0
Allowing 'gitLab' to disable Prometheus. (#530)
gregharvey Jan 17, 2022
450d409
GitHub Actions - Rebuilt documentation. (#526)
github-actions[bot] Jan 17, 2022
965d7b2
Prometheus pr 1.x (#533)
gregharvey Jan 17, 2022
cbb386d
Add private files support for Drupal in Nginx. (#535)
EmlynK Jan 18, 2022
8904ba8
Prometheus pr 1.x (#539)
gregharvey Jan 18, 2022
df86ca3
Removing our unused ClamAV roles and adding a Galaxy role to common b…
gregharvey Jan 25, 2022
c0e8b06
Revert "Moving OSSEC pkill to use process_manager role instead. (#258…
gregharvey Jan 27, 2022
b8a1f60
Backing out of Packer logging.
gregharvey Jan 28, 2022
217424f
Merge branch 'devel' of github.com:codeenigma/ce-provision into devel
gregharvey Feb 3, 2022
9b41cf7
Moving key servers to a variable so we can set them. (#555)
gregharvey Feb 3, 2022
0e14631
Merge branch 'devel' of github.com:codeenigma/ce-provision into devel
gregharvey Feb 3, 2022
7804c19
Adding a reboot option to the patching role. (#557)
gregharvey Feb 7, 2022
71d1ea7
Add minimal support for Aurora RDS instances (#567)
EmlynK Feb 7, 2022
0aec274
Merge branch 'devel' of https://github.com/codeenigma/ce-provision in…
gregharvey Feb 8, 2022
e4b7bb3
Merge branch 'devel' of github.com:codeenigma/ce-provision into devel
gregharvey Feb 8, 2022
81ee940
Gpg servers fix pr 1.x (#571)
gregharvey Feb 8, 2022
c268b54
Support termination protection in EC2. (#573)
gregharvey Feb 8, 2022
43eaefa
Fix managed SSL key perms and the variable used for the private key. …
EmlynK Feb 8, 2022
25c5768
Merge branch 'devel' of github.com:codeenigma/ce-provision into devel
gregharvey Feb 9, 2022
b4801c5
First pass at EC2 subnet detection.
gregharvey Feb 9, 2022
1cc1c48
Merge branch 'devel' into ec2_subnet_lookup-PR-devel
gregharvey Feb 9, 2022
764cf9f
Merge branch 'ec2_subnet_lookup' into ec2_subnet_lookup-PR-devel
gregharvey Feb 9, 2022
12e974c
Touching subnet file to ensure it exists.
gregharvey Feb 9, 2022
6c38213
Merge branch 'devel' of github.com:codeenigma/ce-provision into devel
gregharvey Feb 9, 2022
ad56241
Merge branch 'devel' into ec2_subnet_lookup-PR-devel
gregharvey Feb 9, 2022
e194662
Merge branch 'ec2_subnet_lookup' into ec2_subnet_lookup-PR-devel
gregharvey Feb 9, 2022
7d503bf
Trying a different approach, file module didn't work.
gregharvey Feb 9, 2022
f3b48b7
Merge branch 'devel' of github.com:codeenigma/ce-provision into devel
gregharvey Feb 9, 2022
9b01aec
Merge branch 'devel' into ec2_subnet_lookup-PR-devel
gregharvey Feb 9, 2022
eb9481f
Merge branch 'ec2_subnet_lookup' into ec2_subnet_lookup-PR-devel
gregharvey Feb 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions roles/aws/aws_ec2_with_eip/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@

# Subnet ID is stored in ce-provision's data directory
- name: Ensure subnet file exists.
ansible.builtin.file:
path: "{{ lookup('file', _ce_provision_data_dir + '/' + _aws_resource_name + '/ec2-subnet-id') }}"
state: touch
ansible.builtin.copy:
content: ""
dest: "{{ lookup('file', _ce_provision_data_dir + '/' + _aws_resource_name + '/ec2-subnet-id') }}"
force: false

- name: Try to load subnet from file.
ansible.builtin.set_fact:
Expand All @@ -36,13 +37,13 @@
region: "{{ aws_ec2_with_eip.aws_region }}"
filters:
"tag:Name": "{{ aws_ec2_with_eip.vpc_name }}"
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length > 0 )
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length == 0 )
register: _aws_ec2_with_eip_vpc

- name: Set the VPC id from name.
ansible.builtin.set_fact:
_aws_ec2_with_eip_vpc_id: "{{ _aws_ec2_with_eip_vpc.vpcs[0].vpc_id }}"
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length > 0 )
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length == 0 )

- name: Gather public subnet information.
amazon.aws.ec2_vpc_subnet_info:
Expand All @@ -52,20 +53,20 @@
vpc-id: "{{ _aws_ec2_with_eip_vpc_id }}"
tag:Env: "{{ _env_type }}"
tag:Profile: "{{ aws_ec2_with_eip.vpc_subnet_profile }}"
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length > 0 )
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length == 0 )
register: _aws_ec2_with_eip_subnets

- name: Pick a subnet at random.
ansible.builtin.set_fact:
_aws_ec2_with_eip_vpc_subnet_id: "{{ item.subnet_id }}"
with_random_choice: "{{ _aws_ec2_with_eip_subnets.subnets }}"
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length > 0 )
when: ( aws_ec2_with_eip.vpc_name is defined and aws_ec2_with_eip.vpc_name | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length == 0 )

# If we have no stored subnet ID and one has been set in variables this will override whatever might be looked up.
- name: Load defined subnet from variables.
ansible.builtin.set_fact:
_aws_ec2_with_eip_vpc_subnet_id: "{{ aws_ec2_with_eip.vpc_subnet_id }}"
when: ( aws_ec2_with_eip.vpc_subnet_id is defined and aws_ec2_with_eip.vpc_subnet_id | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length > 0 )
when: ( aws_ec2_with_eip.vpc_subnet_id is defined and aws_ec2_with_eip.vpc_subnet_id | length > 0 and _aws_ec2_with_eip_vpc_subnet_id | length == 0 )

# Save the subnet ID to file.
- name: Save the subnet ID in the data directory.
Expand Down