Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**********
- * Base variables
- **********/
- team = "devops"
- env = "prod"
- /**********
- * Project variables
- **********/
- security_group = [
- {
- name = "HTTP and HTTPS from 0.0.0.0/0"
- description = "HTTP and HTTPS from 0.0.0.0/0"
- vpc_id = "${aws_vpc.main.id}"
- ingresses = [
- {
- description = "HTTP from 0.0.0.0/0"
- from_port = 80
- to_port = 80
- protocol = "tcp"
- cidr_blocks = ["0.0.0.0/0"]
- },
- {
- description = "HTTPS from 0.0.0.0/0"
- from_port = 443
- to_port = 443
- protocol = "tcp"
- cidr_blocks = ["0.0.0.0/0"]
- }
- ]
- egresses = [
- {
- from_port = 0
- to_port = 0
- protocol = "-1"
- cidr_blocks = ["0.0.0.0/0"]
- }
- ]
- }
- ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement