Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions roles/aws/aws_ami/tasks/repack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- 22
cidr_ip: "{{ aws_ami.repack.controller_cidr }}"
rule_desc: "Allow controller to access the {{ aws_ami.ami_name }}-repacking instance"
rules_egress: []

- name: Create an AMI with an existing EC2 instance.
amazon.aws.ec2_ami:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
from_port: 22
to_port: 22
cidr_ip: 0.0.0.0/0
rules_egress: []
register: _restore_testing_sg

- name: Remove restore testing query file.
Expand Down
5 changes: 5 additions & 0 deletions roles/aws/aws_ec2_autoscale_cluster/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
rules:
- proto: all
group_name: "{{ aws_ec2_autoscale_cluster.name }}"
rule_desc: "Allow internal traffic for cluster {{ aws_ec2_autoscale_cluster.name }}"
rules_egress:
- proto: all
group_name: "{{ aws_ec2_autoscale_cluster.name }}"
rule_desc: "Allow internal traffic for cluster {{ aws_ec2_autoscale_cluster.name }}"
register: _aws_ec2_autoscale_cluster_security_group

- name: Set _aws_ec2_autoscale_cluster_security_group variable.
Expand Down
5 changes: 5 additions & 0 deletions roles/aws/aws_vpc_subnet/tasks/subnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
rules:
- proto: all
group_name: "{{ subnet.name }}"
rule_desc: "Allow internal traffic for subnet {{ subnet.name }}"
rules_egress:
- proto: all
group_name: "{{ subnet.name }}"
rule_desc: "Allow internal traffic for subnet {{ subnet.name }}"
when:
- subnet.security_group is defined
- subnet.security_group