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

julio-pimentel/c04-iac02 #1928

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions classes/04class/exercises/c04-iac02/julio-pimentel/ANSWER.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# C04-IAC02

## Terraform code
- [_backend.tf](_backend.tf)
- [_provider.tf](_provider.tf)
- [vpc.tf](vpc.tf)
- [output.tf](output.tf)
- [variables.tf](variables.tf)
- [main.tfvars](main.tfvars)

## Command Execution Output
- [output.txt](output.txt)

<!-- Don't change anything below this point-->
<!-- Before commiting, remove both commented lines-->
***
Answer for exercise [c04-iac02](https://github.com/devopsacademyau/academy/blob/c41e824fb2a2c55e3a30b2371a87e3a7551b6741/classes/04class/exercises/c04-iac02/README.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Define location of terraform state
terraform {
backend "s3" {
bucket = "aug-devops-academy-tf-backend"
key = "terraform/terraform.c04-iac02.tfstate"
region = "ap-southeast-2"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
provider "aws" {
version = "~> 4.0"
region = "ap-southeast-2"
}
14 changes: 14 additions & 0 deletions classes/04class/exercises/c04-iac02/julio-pimentel/main.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Input variables
#VPC CIDR
cidr_vpc = "10.0.0.0/16"
vpc_name = "devopsacademy-iac"

#Subnet CIDR and name
subnet_name_public_1 = "devopsacademy-iac-public-1"
subnet_cidr_public_1 = "10.0.1.0/24"
subnet_name_public_2 = "devopsacademy-iac-public-2"
subnet_cidr_public_2 = "10.0.2.0/24"
subnet_name_private_1 = "devopsacademy-iac-private-1"
subnet_cidr_private_1 = "10.0.3.0/24"
subnet_name_private_2 = "devopsacademy-iac-private-2"
subnet_cidr_private_2 = "10.0.4.0/24"
18 changes: 18 additions & 0 deletions classes/04class/exercises/c04-iac02/julio-pimentel/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# All subnet CIDR blocks
output "c04_iac02_subnets" {
value = {
public = [
aws_subnet.c04_iac02_public_1.cidr_block,
aws_subnet.c04_iac02_public_2.cidr_block
],
private = [
aws_subnet.c04_iac02_private_1.cidr_block,
aws_subnet.c04_iac02_private_2.cidr_block
]
}
}

#VPC CIDR
output "c04_iac02_vpc" {
value = aws_vpc.devopsacademy_iac.cidr_block
}
295 changes: 295 additions & 0 deletions classes/04class/exercises/c04-iac02/julio-pimentel/output.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,295 @@
$ terraform plan -var-file="main.tfvars"
data.aws_availability_zones.az_available: Reading...
data.aws_availability_zones.az_available: Read complete after 0s [id=ap-southeast-2]

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
+ create

Terraform will perform the following actions:

# aws_eip.c04_iac02_eip will be created
+ resource "aws_eip" "c04_iac02_eip" {
+ allocation_id = (known after apply)
+ association_id = (known after apply)
+ carrier_ip = (known after apply)
+ customer_owned_ip = (known after apply)
+ domain = (known after apply)
+ id = (known after apply)
+ instance = (known after apply)
+ network_border_group = (known after apply)
+ network_interface = (known after apply)
+ private_dns = (known after apply)
+ private_ip = (known after apply)
+ public_dns = (known after apply)
+ public_ip = (known after apply)
+ public_ipv4_pool = (known after apply)
+ tags_all = (known after apply)
+ vpc = true
}

# aws_internet_gateway.c04_iac02_igw will be created
+ resource "aws_internet_gateway" "c04_iac02_igw" {
+ arn = (known after apply)
+ id = (known after apply)
+ owner_id = (known after apply)
+ tags = {
+ "Name" = "c04-iac02-igw"
}
+ tags_all = {
+ "Name" = "c04-iac02-igw"
}
+ vpc_id = (known after apply)
}

# aws_nat_gateway.c04_iac02_ngw will be created
+ resource "aws_nat_gateway" "c04_iac02_ngw" {
+ allocation_id = (known after apply)
+ connectivity_type = "public"
+ id = (known after apply)
+ network_interface_id = (known after apply)
+ private_ip = (known after apply)
+ public_ip = (known after apply)
+ subnet_id = (known after apply)
+ tags = {
+ "Name" = "c04-iac02-ngw"
}
+ tags_all = {
+ "Name" = "c04-iac02-ngw"
}
}

# aws_route_table.c04_iac02_rt_private will be created
+ resource "aws_route_table" "c04_iac02_rt_private" {
+ arn = (known after apply)
+ id = (known after apply)
+ owner_id = (known after apply)
+ propagating_vgws = (known after apply)
+ route = [
+ {
+ carrier_gateway_id = ""
+ cidr_block = "0.0.0.0/0"
+ core_network_arn = ""
+ destination_prefix_list_id = ""
+ egress_only_gateway_id = ""
+ gateway_id = ""
+ instance_id = ""
+ ipv6_cidr_block = ""
+ local_gateway_id = ""
+ nat_gateway_id = (known after apply)
+ network_interface_id = ""
+ transit_gateway_id = ""
+ vpc_endpoint_id = ""
+ vpc_peering_connection_id = ""
},
]
+ tags = {
+ "Name" = "c04-iac02-rt-private"
}
+ tags_all = {
+ "Name" = "c04-iac02-rt-private"
}
+ vpc_id = (known after apply)
}

# aws_route_table.c04_iac02_rt_public will be created
+ resource "aws_route_table" "c04_iac02_rt_public" {
+ arn = (known after apply)
+ id = (known after apply)
+ owner_id = (known after apply)
+ propagating_vgws = (known after apply)
+ route = [
+ {
+ carrier_gateway_id = ""
+ cidr_block = "0.0.0.0/0"
+ core_network_arn = ""
+ destination_prefix_list_id = ""
+ egress_only_gateway_id = ""
+ gateway_id = (known after apply)
+ instance_id = ""
+ ipv6_cidr_block = ""
+ local_gateway_id = ""
+ nat_gateway_id = ""
+ network_interface_id = ""
+ transit_gateway_id = ""
+ vpc_endpoint_id = ""
+ vpc_peering_connection_id = ""
},
]
+ tags = {
+ "Name" = "c04-iac02-rt-public"
}
+ tags_all = {
+ "Name" = "c04-iac02-rt-public"
}
+ vpc_id = (known after apply)
}

# aws_route_table_association.c04_iac02_rt_assoc_private_1 will be created
+ resource "aws_route_table_association" "c04_iac02_rt_assoc_private_1" {
+ id = (known after apply)
+ route_table_id = (known after apply)
+ subnet_id = (known after apply)
}

# aws_route_table_association.c04_iac02_rt_assoc_private_2 will be created
+ resource "aws_route_table_association" "c04_iac02_rt_assoc_private_2" {
+ id = (known after apply)
+ route_table_id = (known after apply)
+ subnet_id = (known after apply)
}

# aws_route_table_association.c04_iac02_rt_assoc_public_1 will be created
+ resource "aws_route_table_association" "c04_iac02_rt_assoc_public_1" {
+ id = (known after apply)
+ route_table_id = (known after apply)
+ subnet_id = (known after apply)
}

# aws_route_table_association.c04_iac02_rt_assoc_public_2 will be created
+ resource "aws_route_table_association" "c04_iac02_rt_assoc_public_2" {
+ id = (known after apply)
+ route_table_id = (known after apply)
+ subnet_id = (known after apply)
}

# aws_subnet.c04_iac02_private_1 will be created
+ resource "aws_subnet" "c04_iac02_private_1" {
+ arn = (known after apply)
+ assign_ipv6_address_on_creation = false
+ availability_zone = "ap-southeast-2a"
+ availability_zone_id = (known after apply)
+ cidr_block = "10.0.3.0/24"
+ enable_dns64 = false
+ enable_resource_name_dns_a_record_on_launch = false
+ enable_resource_name_dns_aaaa_record_on_launch = false
+ id = (known after apply)
+ ipv6_cidr_block_association_id = (known after apply)
+ ipv6_native = false
+ map_public_ip_on_launch = false
+ owner_id = (known after apply)
+ private_dns_hostname_type_on_launch = (known after apply)
+ tags = {
+ "Name" = "devopsacademy-iac-private-1"
}
+ tags_all = {
+ "Name" = "devopsacademy-iac-private-1"
}
+ vpc_id = (known after apply)
}

# aws_subnet.c04_iac02_private_2 will be created
+ resource "aws_subnet" "c04_iac02_private_2" {
+ arn = (known after apply)
+ assign_ipv6_address_on_creation = false
+ availability_zone = "ap-southeast-2b"
+ availability_zone_id = (known after apply)
+ cidr_block = "10.0.4.0/24"
+ enable_dns64 = false
+ enable_resource_name_dns_a_record_on_launch = false
+ enable_resource_name_dns_aaaa_record_on_launch = false
+ id = (known after apply)
+ ipv6_cidr_block_association_id = (known after apply)
+ ipv6_native = false
+ map_public_ip_on_launch = false
+ owner_id = (known after apply)
+ private_dns_hostname_type_on_launch = (known after apply)
+ tags = {
+ "Name" = "10.0.4.0/24"
}
+ tags_all = {
+ "Name" = "10.0.4.0/24"
}
+ vpc_id = (known after apply)
}

# aws_subnet.c04_iac02_public_1 will be created
+ resource "aws_subnet" "c04_iac02_public_1" {
+ arn = (known after apply)
+ assign_ipv6_address_on_creation = false
+ availability_zone = "ap-southeast-2a"
+ availability_zone_id = (known after apply)
+ cidr_block = "10.0.1.0/24"
+ enable_dns64 = false
+ enable_resource_name_dns_a_record_on_launch = false
+ enable_resource_name_dns_aaaa_record_on_launch = false
+ id = (known after apply)
+ ipv6_cidr_block_association_id = (known after apply)
+ ipv6_native = false
+ map_public_ip_on_launch = true
+ owner_id = (known after apply)
+ private_dns_hostname_type_on_launch = (known after apply)
+ tags = {
+ "Name" = "devopsacademy-iac-public-1"
}
+ tags_all = {
+ "Name" = "devopsacademy-iac-public-1"
}
+ vpc_id = (known after apply)
}

# aws_subnet.c04_iac02_public_2 will be created
+ resource "aws_subnet" "c04_iac02_public_2" {
+ arn = (known after apply)
+ assign_ipv6_address_on_creation = false
+ availability_zone = "ap-southeast-2b"
+ availability_zone_id = (known after apply)
+ cidr_block = "10.0.2.0/24"
+ enable_dns64 = false
+ enable_resource_name_dns_a_record_on_launch = false
+ enable_resource_name_dns_aaaa_record_on_launch = false
+ id = (known after apply)
+ ipv6_cidr_block_association_id = (known after apply)
+ ipv6_native = false
+ map_public_ip_on_launch = true
+ owner_id = (known after apply)
+ private_dns_hostname_type_on_launch = (known after apply)
+ tags = {
+ "Name" = "devopsacademy-iac-public-2"
}
+ tags_all = {
+ "Name" = "devopsacademy-iac-public-2"
}
+ vpc_id = (known after apply)
}

# aws_vpc.devopsacademy_iac will be created
+ resource "aws_vpc" "devopsacademy_iac" {
+ arn = (known after apply)
+ cidr_block = "10.0.0.0/16"
+ default_network_acl_id = (known after apply)
+ default_route_table_id = (known after apply)
+ default_security_group_id = (known after apply)
+ dhcp_options_id = (known after apply)
+ enable_classiclink = (known after apply)
+ enable_classiclink_dns_support = (known after apply)
+ enable_dns_hostnames = true
+ enable_dns_support = true
+ id = (known after apply)
+ instance_tenancy = "default"
+ ipv6_association_id = (known after apply)
+ ipv6_cidr_block = (known after apply)
+ ipv6_cidr_block_network_border_group = (known after apply)
+ main_route_table_id = (known after apply)
+ owner_id = (known after apply)
+ tags = {
+ "Name" = "devopsacademy-iac"
}
+ tags_all = {
+ "Name" = "devopsacademy-iac"
}
}

Plan: 14 to add, 0 to change, 0 to destroy.

Changes to Outputs:
+ c04_iac02_subnets = {
+ private = [
+ "10.0.3.0/24",
+ "10.0.4.0/24",
]
+ public = [
+ "10.0.1.0/24",
+ "10.0.2.0/24",
]
}
+ c04_iac02_vpc = "10.0.0.0/16"
Loading