Als «terraform» getaggte Fragen

1
Ingress-Regeln für Terraform AWS-Sicherheitsgruppen
Wie definieren Sie mehrere Ingress-Regeln in einer AWS Security Group mit Terraform? Ich habe es versucht: resource "aws_security_group" "sg_allowall" { name = "${var.prefix}-allow" ingress { from_port = "443" to_port = "443" protocol = "-1" cidr_blocks = ["0.0.0.0/0"] } egress { from_port = "0" to_port = "0" protocol = "-1" cidr_blocks …
1 terraform 
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.