devopsacademyau / 2020-feb-project1-group2

Creative Commons Attribution Share Alike 4.0 International
0 stars 2 forks source link

Network Stack - REVIEW #26

Open kikobr82 opened 4 years ago

kikobr82 commented 4 years ago

Objectives:

Network stack

Acceptance Criteria:

deniseddi commented 4 years ago

Looking at the terraform-vpc :

deniseddi commented 4 years ago

I can't find if 2 Networks ACLs (public/private) have been created. I am looking for code similar to:

resource "aws_network_acl" "main" {
  vpc_id = "${aws_vpc.main.id}"

Possibly with ingress and egress rules.

deniseddi commented 4 years ago

In terraform-vpc/variables.tf, variable "cidr_vpc" { type = string default = "10.0.0.0/16" } Meets the requirement of /16 cidr, however, variable "private_subnet-wp-a" { type = string default = "10.0.63.0/18" } Shouldn't each be ".../24" ?

deniseddi commented 4 years ago

Reviewed Network Stack.

Commited changes:

Need to do the checks of the "Acceptance Criteria".

deniseddi commented 4 years ago