Skip to content

Commit 2ca95af

Browse files
authored
Deprecate aws_availibility_zone variable (#44)
1 parent 76bc177 commit 2ca95af

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

playbooks/aws_sdwan_config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ aws_allowed_subnets: null
2323
aws_region: us-east-1
2424
aws_resources_prefix: "{{ organization_name }}"
2525
aws_tag_creator: "{{ organization_name }}"
26-
aws_availibility_zone: us-east-1a # we cannot use us-east-1e for c5.9xlarge, therefore we use us-east-1a
2726

2827
# VPC
2928
aws_vpc_name: "{{ aws_resources_prefix }}-vpc"

roles/aws_edges/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ The following variables must be set prior to executing the role:
5353

5454
- `organization_name`: Identifier for your organization, used for naming AWS resources.
5555
- `aws_region`: AWS region to host the resources.
56-
- `aws_availibility_zone`: Specific AWS availability zone within the selected region.
5756
- `admin_password`: Password for administrative access to controller instances.
5857
- `admin_ssh_keys`: List of SSH public keys authorized for admin login.
5958
- `aws_vpc_config`: Configuration details for the AWS VPC.

roles/aws_network_infrastructure/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ Before running the role, define the following variables:
5252

5353
- `organization_name`: The name of your organization, influencing AWS resource naming.
5454
- `aws_region`: The AWS region for deploying resources.
55-
- `aws_availibility_zone`: The desired AWS availability zone within the region.
5655
- `aws_allowed_subnets`: List of subnets allowed to interact with the AWS resources.
5756

5857
## Example Playbook

roles/aws_network_infrastructure/defaults/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ organization_name: null # has to be set by user
1717
aws_region: null
1818
aws_resources_prefix: "{{ organization_name }}"
1919
aws_tag_creator: "{{ organization_name }}"
20-
aws_availibility_zone: us-east-1a # we cannot use us-east-1e for c5.9xlarge, therefore we use us-east-1a
2120

2221
# VPC
2322
aws_vpc_name: "{{ aws_resources_prefix }}-vpc"

roles/aws_network_infrastructure/tasks/aws_create_network_infrastructure.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
cidr: "{{ subnet_config.subnet_cidr }}"
6666
map_public: "{{ subnet_config.type in ['mgmt', 'transport'] }}"
6767
region: "{{ aws_region }}"
68-
az: "{{ aws_availibility_zone }}"
6968
tags:
7069
Name: "{{ subnet_config.name }}"
7170
Creator: "{{ aws_tag_creator }}"

roles/aws_teardown/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ This role provides a systematic approach to tearing down AWS resources, with a s
3737
- `teardown_only_instances`: Boolean value to indicate if only EC2 instances should be torn down.
3838
- `teardown_specific_instances`: Boolean value to indicate if specific EC2 instances should be torn down.
3939
- `aws_region`: AWS region where resources were deployed.
40-
- `aws_availibility_zone`: AWS availability zone used for resource deployment (default: `us-east-1a`).
4140
- `aws_vpc_name`, `aws_security_group_name`: Names for the VPC and security group to be removed.
4241

4342
## Example Playbook

roles/aws_teardown/defaults/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ teardown_specific_instances: false
1717
aws_region: null
1818
aws_resources_prefix: "{{ organization_name }}"
1919
aws_tag_creator: "{{ organization_name }}"
20-
aws_availibility_zone: null # we cannot use us-east-1e for c5.9xlarge, therefore we use us-east-1a
2120

2221
aws_vpc_name: "{{ aws_resources_prefix }}-vpc"
2322
aws_security_group_name: "{{ aws_resources_prefix }}-sg"

roles/common/defaults/aws_required_vars_controllers.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
required_variables:
77
organization_name: "{{ organization_name }}"
88
aws_region: "{{ aws_region }}"
9-
aws_availibility_zone: "{{ aws_availibility_zone }}"
109
admin_password: "{{ admin_password }}"
1110
aws_vpc_config: "{{ aws_vpc_config }}"
1211
aws_security_group_config: "{{ aws_security_group_config }}"

roles/common/defaults/aws_required_vars_edges.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
required_variables:
77
organization_name: "{{ organization_name }}"
88
aws_region: "{{ aws_region }}"
9-
aws_availibility_zone: "{{ aws_availibility_zone }}"
109
admin_password: "{{ admin_password }}"
1110
aws_vpc_config: "{{ aws_vpc_config }}"
1211
aws_security_group_config: "{{ aws_security_group_config }}"

roles/common/defaults/aws_required_vars_network_infrastructure.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@
66
required_variables:
77
organization_name: "{{ organization_name }}"
88
aws_region: "{{ aws_region }}"
9-
aws_availibility_zone: "{{ aws_availibility_zone }}"
109
aws_allowed_subnets: "{{ aws_allowed_subnets }}"

0 commit comments

Comments
 (0)