Terraform contd
ntier-aws:
- fixing cidr range issue with terraform functions
- Refer Here for the usage of cidrsubnet function
-
graph
-
try creating a security groups Refer Here by using list(object) as input type
- web
- ingress:
- http (80): allow to all
- ssh (22): allow to all
- ingress:
- app
- ingress:
- ssh (22): allow to all
- ingress:
- web
ntier-azure
- Refer Here for the usage of cidrsubnet function to generate subnets
- graph
- Creating a Network security group for
- web
- incoming:
- http (80): allow to all
- ssh (22): allow to all
- incoming:
- app
- incoming:
- ssh (22): allow to all
- incoming:
- web
- For screen shots kindly refer classroom video
- Refer Here for resource docs
- Refer Here for changeset with nsg and object usage
concepts
- For dealing with ip address related stuff terraform has ip functions and we have used cidrsubnet function to calculate subnet cidr based on network range Refer Here
- For generating graph or understading the order of creation we can use terraform graph command which generates graph in dot format Refer Here and graph can be visualized Refer Here
- Variable type map or object Refer Here
