Skip to content

Commit e61fdcc

Browse files
danielbryantukstack72
authored andcommitted
Make clearer that ipv4_range is deprecated (hashicorp#10749)
Removed example code usage that demonstrated deprecated ipv4_range argument, and made clearer that argument is deprecated
1 parent 4d03f26 commit e61fdcc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

website/source/docs/providers/google/r/compute_network.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Manages a network within GCE.
1414

1515
```js
1616
resource "google_compute_network" "default" {
17-
name = "test"
18-
ipv4_range = "10.0.0.0/16"
17+
name = "test"
18+
auto_create_subnetworks = "true"
1919
}
2020
```
2121

@@ -37,7 +37,7 @@ The following arguments are supported:
3737

3838
* `description` - (Optional) A brief description of this resource.
3939

40-
* `ipv4_range` - (Optional) The IPv4 address range that machines in this network
40+
* `ipv4_range` - (DEPRECATED, Optional) The IPv4 address range that machines in this network
4141
are assigned to, represented as a CIDR block. If not set, an auto or custom
4242
subnetted network will be created, depending on the value of
4343
`auto_create_subnetworks` attribute. This attribute may not be used if

0 commit comments

Comments
 (0)