You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/r/google_project.html.markdown
+7-5
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ doc for more information.
19
19
20
20
~> This resource reads the specified billing account on every terraform apply and plan operation so you must have permissions on the specified billing account.
21
21
22
-
~> It is recommended to use the `constraints/compute.skipDefaultNetworkCreation`[constraint](/docs/providers/google/r/google_organization_policy.html) to remove the default network instead of setting `auto_create_network` to false.
22
+
~> It is recommended to use the `constraints/compute.skipDefaultNetworkCreation`[constraint](/docs/providers/google/r/google_organization_policy.html) to remove the default network instead of setting `auto_create_network` to false, when possible.
23
23
24
24
To get more information about projects, see:
25
25
@@ -84,10 +84,12 @@ The following arguments are supported:
84
84
85
85
*`labels` - (Optional) A set of key/value label pairs to assign to the project.
86
86
87
-
*`auto_create_network` - (Optional) Create the 'default' network automatically. Default `true`.
88
-
If set to `false`, the default network will be deleted. Note that, for quota purposes, you
89
-
will still need to have 1 network slot available to create the project successfully, even if
90
-
you set `auto_create_network` to `false`, since the network will exist momentarily.
87
+
*`auto_create_network` - (Optional) Controls whether the 'default' network exists on the project. Defaults
88
+
to `true`, where it is created. If set to `false`, the default network will still be created by GCP but
89
+
will be deleted immediately by Terraform. Therefore, for quota purposes, you will still need to have 1
90
+
network slot available to create the project successfully, even if you set `auto_create_network` to
91
+
`false`. Note that when `false`, Terraform enables `compute.googleapis.com` on the project to interact
0 commit comments