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
2 changes: 2 additions & 0 deletions docs/roles/aws/aws_ec2_autoscale_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ aws_ec2_autoscale_cluster:
vpc_id: vpc-XXXX # One of vpc_id or vpc_name is mandatory.
# vpc_name: example-vpc
subnets:
# If rds.rds.true is set and you are creating an RDS instance then you must use at least two AZs, this is hard requirement.
# This means your region and environment must also have a minimum of two subnets - see `aws_vpc_subnet`
# - az: a
# cidr: "10.0.3.0/26"
- az: b
Expand Down
1 change: 1 addition & 0 deletions docs/roles/aws/aws_rds.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ aws_rds:
aws_profile: "{{ _aws_profile }}"
region: "{{ _aws_region }}"
multi_az: true
# You must provide at least two subnets in two different AZs, even for single AZ deployments.
subnets:
- subnet-aaaaaaaa
- subnet-bbbbbbbb
Expand Down
1 change: 1 addition & 0 deletions docs/roles/aws/aws_vpc_subnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ aws_vpc_subnet:
# vpc_name: example-vpc
aws_profile: "{{ _aws_profile }}"
region: "{{ _aws_region }}"
# If you intend to have RDS instances you must provide at least two subnets.
subnets:
- cidr_block: "10.0.0.0/24"
# ipv6_cidr_block: "1" # This will create something like xxxx:xxxx:xxxx:xxyy::/64 where yy is created using the ansible.utils.ipsubnet filter automatically - DO NOT DEFINE IF IPV6 IS NOT REQUIRED
Expand Down
2 changes: 2 additions & 0 deletions roles/aws/aws_ec2_autoscale_cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ aws_ec2_autoscale_cluster:
vpc_id: vpc-XXXX # One of vpc_id or vpc_name is mandatory.
# vpc_name: example-vpc
subnets:
# If rds.rds.true is set and you are creating an RDS instance then you must use at least two AZs, this is hard requirement.
# This means your region and environment must also have a minimum of two subnets - see `aws_vpc_subnet`
# - az: a
# cidr: "10.0.3.0/26"
- az: b
Expand Down
2 changes: 2 additions & 0 deletions roles/aws/aws_ec2_autoscale_cluster/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ aws_ec2_autoscale_cluster:
vpc_id: vpc-XXXX # One of vpc_id or vpc_name is mandatory.
# vpc_name: example-vpc
subnets:
# If rds.rds.true is set and you are creating an RDS instance then you must use at least two AZs, this is hard requirement.
# This means your region and environment must also have a minimum of two subnets - see `aws_vpc_subnet`
# - az: a
# cidr: "10.0.3.0/26"
- az: b
Expand Down
1 change: 1 addition & 0 deletions roles/aws/aws_rds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ aws_rds:
aws_profile: "{{ _aws_profile }}"
region: "{{ _aws_region }}"
multi_az: true
# You must provide at least two subnets in two different AZs, even for single AZ deployments.
subnets:
- subnet-aaaaaaaa
- subnet-bbbbbbbb
Expand Down
1 change: 1 addition & 0 deletions roles/aws/aws_rds/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ aws_rds:
aws_profile: "{{ _aws_profile }}"
region: "{{ _aws_region }}"
multi_az: true
# You must provide at least two subnets in two different AZs, even for single AZ deployments.
subnets:
- subnet-aaaaaaaa
- subnet-bbbbbbbb
Expand Down
1 change: 1 addition & 0 deletions roles/aws/aws_vpc_subnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ aws_vpc_subnet:
# vpc_name: example-vpc
aws_profile: "{{ _aws_profile }}"
region: "{{ _aws_region }}"
# If you intend to have RDS instances you must provide at least two subnets.
subnets:
- cidr_block: "10.0.0.0/24"
# ipv6_cidr_block: "1" # This will create something like xxxx:xxxx:xxxx:xxyy::/64 where yy is created using the ansible.utils.ipsubnet filter automatically - DO NOT DEFINE IF IPV6 IS NOT REQUIRED
Expand Down
1 change: 1 addition & 0 deletions roles/aws/aws_vpc_subnet/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ aws_vpc_subnet:
# vpc_name: example-vpc
aws_profile: "{{ _aws_profile }}"
region: "{{ _aws_region }}"
# If you intend to have RDS instances you must provide at least two subnets.
subnets:
- cidr_block: "10.0.0.0/24"
# ipv6_cidr_block: "1" # This will create something like xxxx:xxxx:xxxx:xxyy::/64 where yy is created using the ansible.utils.ipsubnet filter automatically - DO NOT DEFINE IF IPV6 IS NOT REQUIRED
Expand Down