resource "google_compute_network" "${MyResource}" {
name = "example-name"
ipv4_range = "10.0.0.0/16"
}
google_compute_network
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
0 Comments
Add Comment
Log in to add a comment