0
1
llucycodes42
The code snippet creates a new resource called example-name with the following properties:
name: "example-name"
network: "example-network"
allow:
protocol: "icmp"
Shortcut: tf_google_compute_firewall
resource "google_compute_firewall" "${MyResource}" {
name = "example-name"
network = "example-network"
allow {
protocol = "icmp"
}
}