Advertisement
Guest User

Untitled

a guest
Apr 15th, 2020
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. /**********
  2. * Base variables
  3. **********/
  4. team = "devops"
  5. env = "prod"
  6.  
  7.  
  8. /**********
  9. * Project variables
  10. **********/
  11.  
  12. security_group = [
  13. {
  14. name = "HTTP and HTTPS from 0.0.0.0/0"
  15. description = "HTTP and HTTPS from 0.0.0.0/0"
  16. vpc_id = "${aws_vpc.main.id}"
  17. ingresses = [
  18. {
  19. description = "HTTP from 0.0.0.0/0"
  20. from_port = 80
  21. to_port = 80
  22. protocol = "tcp"
  23. cidr_blocks = ["0.0.0.0/0"]
  24. },
  25. {
  26. description = "HTTPS from 0.0.0.0/0"
  27. from_port = 443
  28. to_port = 443
  29. protocol = "tcp"
  30. cidr_blocks = ["0.0.0.0/0"]
  31. }
  32. ]
  33. egresses = [
  34. {
  35. from_port = 0
  36. to_port = 0
  37. protocol = "-1"
  38. cidr_blocks = ["0.0.0.0/0"]
  39. }
  40. ]
  41. }
  42. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement