Advertisement
Guest User

Untitled

a guest
Sep 11th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. resource "aws_security_group" "myapp-cluster-sg" {
  2. name = "myapp-cluster-sg"
  3. description = "Cluster communication with worker nodes"
  4. vpc_id = "${aws_vpc.myapp-vpc.id}"
  5.  
  6. egress {
  7. from_port = 0
  8. to_port = 0
  9. protocol = "-1"
  10. cidr_blocks = ["0.0.0.0/0"]
  11. }
  12.  
  13. tags = {
  14. Name = "myapp-resource"
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement