0
0
llucycodes42
This code creates a resource named "example-name" in the Google Compute Network namespace and sets the range of IP addresses that the resource can use to be 10.0.0.0/16.
Shortcut: tf_google_compute_network
resource "google_compute_network" "${MyResource}" {
name = "example-name"
ipv4_range = "10.0.0.0/16"
}