Skip to content

Commit 7e64b3f

Browse files
topliceanunat-henderson
authored andcommitted
make it clear that the attribute represents the project id (#672)
1 parent 9ae7a8d commit 7e64b3f

File tree

64 files changed

+92
-93
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+92
-93
lines changed

website/docs/d/datasource_compute_network.html.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ data "google_compute_network" "my-network" {
2323
The following arguments are supported:
2424

2525
* `name` - (Required) The name of the network.
26-
26+
2727

2828
- - -
2929

30-
* `project` - (Optional) The project in which the resource belongs. If it
30+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3131
is not provided, the provider project is used.
3232

3333
## Attributes Reference
3434

3535
In addition to the arguments listed above, the following attributes are exported:
3636

3737
* `network` - The network name or resource link to the parent
38-
network of this network.
38+
network of this network.
3939

4040
* `description` - Description of this network.
4141

website/docs/d/datasource_compute_subnetwork.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following arguments are supported:
2727

2828
- - -
2929

30-
* `project` - (Optional) The project in which the resource belongs. If it
30+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3131
is not provided, the provider project is used.
3232

3333
* `region` - (Optional) The region this subnetwork has been created in. If

website/docs/d/dns_managed_zone.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ resource "google_dns_record_set" "dns" {
3434

3535
* `name` - (Required) A unique name for the resource.
3636

37-
* `project` - (Optional) ID of the project for the Google Cloud DNS zone.
37+
* `project` - (Optional) The ID of the project for the Google Cloud DNS zone.
3838

3939
## Attributes Reference
4040

website/docs/d/google_compute_instance_group.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The following arguments are supported:
2929

3030
- - -
3131

32-
* `project` - (Optional) The project in which the resource belongs. If it
32+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3333
is not provided, the provider project is used.
3434

3535
## Attributes Reference
@@ -40,7 +40,7 @@ The following arguments are exported:
4040

4141
* `instances` - List of instances in the group.
4242

43-
* `named_port` - List of named ports in the group.
43+
* `named_port` - List of named ports in the group.
4444

4545
* `network` - The URL of the network the instance group is in.
4646

website/docs/index.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Use the navigation to the left to read about the available resources.
2020
// Configure the Google Cloud provider
2121
provider "google" {
2222
credentials = "${file("account.json")}"
23-
project = "my-gce-project"
23+
project = "my-gce-project-id"
2424
region = "us-central1"
2525
}
2626

website/docs/r/bigquery_dataset.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The following arguments are supported:
3636
* `dataset_id` - (Required) A unique ID for the resource.
3737
Changing this forces a new resource to be created.
3838

39-
* `project` - (Optional) The project in which the resource belongs. If it
39+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
4040
is not provided, the provider project is used.
4141

4242
* `friendly_name` - (Optional) A descriptive name for the dataset.

website/docs/r/bigquery_table.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The following arguments are supported:
5454
* `table_id` - (Required) A unique ID for the resource.
5555
Changing this forces a new resource to be created.
5656

57-
* `project` - (Optional) The project in which the resource belongs. If it
57+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
5858
is not provided, the provider project is used.
5959

6060
* `description` - (Optional) The field description.

website/docs/r/bigtable_instance.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following arguments are supported:
4141

4242
* `storage_type` - (Optional) The storage type to use. One of `"SSD"` or `"HDD"`. Defaults to `SSD`.
4343

44-
* `project` - (Optional) The project in which the resource belongs. If it
44+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
4545
is not provided, the provider project is used.
4646

4747
* `display_name` - (Optional) The human-readable display name of the Bigtable instance. Defaults to the instance `name`.

website/docs/r/bigtable_table.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following arguments are supported:
4141

4242
* `split_keys` - (Optional) A list of predefined keys to split the table on.
4343

44-
* `project` - (Optional) The project in which the resource belongs. If it
44+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
4545
is not provided, the provider project is used.
4646

4747
## Attributes Reference

website/docs/r/compute_address.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The following arguments are supported:
3333

3434
- - -
3535

36-
* `project` - (Optional) The project in which the resource belongs. If it
36+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3737
is not provided, the provider project is used.
3838

3939
* `region` - (Optional) The Region in which the created address should reside.
@@ -85,4 +85,4 @@ Alternatively, addresses can be imported using a full or partial `self_link`.
8585
$ terraform import google_compute_address.default https://www.googleapis.com/compute/v1/projects/gcp-project/regions/us-central1/addresses/test-address
8686
8787
$ terraform import google_compute_address.default projects/gcp-project/regions/us-central1/addresses/test-address
88-
```
88+
```

website/docs/r/compute_autoscaler.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The following arguments are supported:
9494
* `description` - (Optional) An optional textual description of the instance
9595
group manager.
9696

97-
* `project` - (Optional) The project in which the resource belongs. If it
97+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
9898
is not provided, the provider project is used.
9999

100100
The `autoscaling_policy` block contains:

website/docs/r/compute_backend_bucket.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The following arguments are supported:
4545

4646
* `enable_cdn` - (Optional) Whether or not to enable the Cloud CDN on the backend bucket.
4747

48-
* `project` - (Optional) The project in which the resource belongs. If it is not provided, the
48+
* `project` - (Optional) The ID of the project in which the resource belongs. If it is not provided, the
4949
provider project is used.
5050

5151
## Attributes Reference

website/docs/r/compute_backend_service.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The following arguments are supported:
8686
* `port_name` - (Optional) The name of a service that has been added to an
8787
instance group in this backend. See [related docs](https://cloud.google.com/compute/docs/instance-groups/#specifying_service_endpoints) for details. Defaults to http.
8888

89-
* `project` - (Optional) The project in which the resource belongs. If it
89+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
9090
is not provided, the provider project is used.
9191

9292
* `protocol` - (Optional) The protocol for incoming requests. Defaults to

website/docs/r/compute_disk.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The following arguments are supported:
5656
For instance, the image `centos-6-v20180104` includes its family name `centos-6`.
5757
These images can be referred by family name here.
5858

59-
* `project` - (Optional) The project in which the resource belongs. If it
59+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
6060
is not provided, the provider project is used.
6161

6262
* `size` - (Optional) The size of the image in gigabytes. If not specified, it

website/docs/r/compute_firewall.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The following arguments are supported:
5353

5454
* `description` - (Optional) Textual description field.
5555

56-
* `project` - (Optional) The project in which the resource belongs. If it
56+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
5757
is not provided, the provider project is used.
5858

5959
* `priority` - (Optional) The priority for this firewall. Ranges from 0-65535, inclusive. Defaults to 1000. Firewall

website/docs/r/compute_forwarding_rule.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The following arguments are supported:
6464
balancing. Packets addressed to these ports will be forwarded to the backends
6565
configured with this forwarding rule. Required for internal load balancing.
6666

67-
* `project` - (Optional) The project in which the resource belongs. If it
67+
* `project` - (Optional) The ID of project in which the resource belongs. If it
6868
is not provided, the provider project is used.
6969

7070
* `region` - (Optional) The Region in which the created address should reside.

website/docs/r/compute_global_address.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following arguments are supported:
3030

3131
- - -
3232

33-
* `project` - (Optional) The project in which the resource belongs. If it
33+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3434
is not provided, the provider project is used.
3535

3636
* `ip_version` - (Optional) The IP Version that will be used by this address. One of `"IPV4"` or `"IPV6"`.

website/docs/r/compute_global_forwarding_rule.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The following arguments are supported:
9696
* Target SSL proxy: 25, 43, 110, 143, 195, 443, 465, 587, 700, 993, 995, 1883, 5222
9797
* Target VPN gateway: 500, 4500
9898

99-
* `project` - (Optional) The project in which the resource belongs. If it
99+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
100100
is not provided, the provider project is used.
101101

102102
* `ip_version` - (Optional)
@@ -123,4 +123,4 @@ Global forwarding rules can be imported using the `name`, e.g.
123123

124124
```
125125
$ terraform import google_compute_global_forwarding_rule.default default-rule
126-
```
126+
```

website/docs/r/compute_http_health_check.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The following arguments are supported:
4949

5050
* `port` - (Optional) TCP port to connect to (default 80).
5151

52-
* `project` - (Optional) The project in which the resource belongs. If it
52+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
5353
is not provided, the provider project is used.
5454

5555
* `request_path` - (Optional) URL path to query (default /).

website/docs/r/compute_https_health_check.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The following arguments are supported:
4848

4949
* `port` - (Optional) TCP port to connect to (default 443).
5050

51-
* `project` - (Optional) The project in which the resource belongs. If it
51+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
5252
is not provided, the provider project is used.
5353

5454
* `request_path` - (Optional) URL path to query (default /).

website/docs/r/compute_image.html.markdown

+1-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following arguments are supported: (Note that one of either source_disk or
6060
* `source_disk` - (Optional) The URL of a disk that will be used as the source of the
6161
image. Changing this forces a new resource to be created.
6262

63-
* `project` - (Optional) The project in which the resource belongs. If it
63+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
6464
is not provided, the provider project is used.
6565

6666
* `raw_disk` - (Optional) The raw disk that will be used as the source of the image.
@@ -80,7 +80,6 @@ The `raw_disk` block supports:
8080
* `container_type` - (Optional) The format used to encode and transmit the
8181
block device. TAR is the only supported type and is the default.
8282

83-
8483
## Attributes Reference
8584

8685
In addition to the arguments listed above, the following computed attributes are

website/docs/r/compute_instance.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The following arguments are supported:
107107
`Intel Haswell` or `Intel Skylake`. See the complete list [here](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
108108
**Note**: [`allow_stopping_for_update`](#allow_stopping_for_update) must be set to true in order to update this field.
109109

110-
* `project` - (Optional) The project in which the resource belongs. If it
110+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
111111
is not provided, the provider project is used.
112112

113113
* `scheduling` - (Optional) The scheduling strategy to use. More details about

website/docs/r/compute_instance_group.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The following arguments are supported:
7474
* `named_port` - (Optional) The named port configuration. See the section below
7575
for details on configuration.
7676

77-
* `project` - (Optional) The project in which the resource belongs. If it
77+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
7878
is not provided, the provider project is used.
7979

8080
* `network` - (Optional) The URL of the network the instance group is in. If
@@ -112,4 +112,4 @@ Instance group can be imported using the `zone` and `name`, e.g.
112112

113113
```
114114
$ terraform import google_compute_instance_group.webservers us-central1-a/terraform-webservers
115-
```
115+
```

website/docs/r/compute_instance_group_manager.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The following arguments are supported:
8484
* `named_port` - (Optional) The named port configuration. See the section below
8585
for details on configuration.
8686

87-
* `project` - (Optional) The project in which the resource belongs. If it
87+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
8888
is not provided, the provider project is used.
8989

9090
* `update_strategy` - (Optional, Default `"RESTART"`) If the `instance_template`

website/docs/r/compute_instance_template.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ The following arguments are supported:
151151
this template. This can be specified multiple times for multiple networks.
152152
Structure is documented below.
153153

154-
* `project` - (Optional) The project in which the resource belongs. If it
154+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
155155
is not provided, the provider project is used.
156156

157157
* `region` - (Optional) An instance template is a global resource that is not
@@ -223,7 +223,7 @@ The `network_interface` block supports:
223223
to. The subnetwork must exist in the same `region` this instance will be
224224
created in. Either `network` or `subnetwork` must be provided.
225225

226-
* `subnetwork_project` - (Optional) The project in which the subnetwork belongs.
226+
* `subnetwork_project` - (Optional) The ID of the project in which the subnetwork belongs.
227227
If it is not provided, the provider project is used.
228228

229229
* `address` - (Optional) The private IP address to assign to the instance. If

website/docs/r/compute_network.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following arguments are supported:
4747

4848
* `description` - (Optional) A brief description of this resource.
4949

50-
* `project` - (Optional) The project in which the resource belongs. If it
50+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
5151
is not provided, the provider project is used.
5252

5353
## Attributes Reference

website/docs/r/compute_project_metadata.html.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Manages metadata common to all instances for a project in GCE. For more informat
1313
and
1414
[API](https://cloud.google.com/compute/docs/reference/latest/projects/setCommonInstanceMetadata).
1515

16-
~> **Note:** If you want to manage only single key/value pairs within the project metadata
17-
rather than the entire set, then use
16+
~> **Note:** If you want to manage only single key/value pairs within the project metadata
17+
rather than the entire set, then use
1818
[google_compute_project_metadata_item](compute_project_metadata_item.html).
1919

2020
## Example Usage
@@ -38,7 +38,7 @@ The following arguments are supported:
3838

3939
- - -
4040

41-
* `project` - (Optional) The project in which the resource belongs. If it
41+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
4242
is not provided, the provider project is used.
4343

4444
## Attributes Reference

website/docs/r/compute_project_metadata_item.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The following arguments are supported:
3232

3333
- - -
3434

35-
* `project` - (Optional) The project in which the resource belongs. If it
35+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3636
is not provided, the provider project is used.
3737

3838
## Attributes Reference

website/docs/r/compute_region_autoscaler.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The following arguments are supported:
9494
* `description` - (Optional) An optional textual description of the instance
9595
group manager.
9696

97-
* `project` - (Optional) The project in which the resource belongs. If it
97+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
9898
is not provided, the provider project is used.
9999

100100
The `autoscaling_policy` block contains:

website/docs/r/compute_region_backend_service.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: |-
99
# google\_compute\_region\_backend\_service
1010

1111
A Region Backend Service defines a regionally-scoped group of virtual machines that will serve traffic for load balancing.
12-
For more information see [the official documentation](https://cloud.google.com/compute/docs/load-balancing/internal/)
12+
For more information see [the official documentation](https://cloud.google.com/compute/docs/load-balancing/internal/)
1313
and [API](https://cloud.google.com/compute/docs/reference/latest/backendServices).
1414

1515
## Example Usage
@@ -80,7 +80,7 @@ The following arguments are supported:
8080

8181
* `description` - (Optional) The textual description for the backend service.
8282

83-
* `project` - (Optional) The project in which the resource belongs. If it
83+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
8484
is not provided, the provider project is used.
8585

8686
* `protocol` - (Optional) The protocol for incoming requests. Defaults to

website/docs/r/compute_region_instance_group_manager.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The following arguments are supported:
8484
* `named_port` - (Optional) The named port configuration. See the section below
8585
for details on configuration.
8686

87-
* `project` - (Optional) The project in which the resource belongs. If it
87+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
8888
is not provided, the provider project is used.
8989

9090
* `target_size` - (Optional) The target number of running instances for this managed

website/docs/r/compute_route.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The following arguments are supported:
6868
* `next_hop_vpn_tunnel` - (Optional) The name of the VPN to route to if this
6969
route is matched.
7070

71-
* `project` - (Optional) The project in which the resource belongs. If it
71+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
7272
is not provided, the provider project is used.
7373

7474
* `tags` - (Optional) The tags that this route applies to.

website/docs/r/compute_router.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ The following arguments are supported:
121121
* `description` - (Optional) A description of the resource.
122122
Changing this forces a new router to be created.
123123

124-
* `project` - (Optional) The project in which the resource belongs. If it
124+
* `project` - (Optional) The ID of the project in which the resource belongs. If it
125125
is not provided, the provider project is used.
126126
Changing this forces a new router to be created.
127127

website/docs/r/compute_router_interface.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ The following arguments are supported:
4040

4141
- - -
4242

43-
* `ip_range` - (Optional) IP address and range of the interface. The IP range must be
43+
* `ip_range` - (Optional) IP address and range of the interface. The IP range must be
4444
in the RFC3927 link-local IP space. Changing this forces a new interface to be created.
4545

46-
* `project` - (Optional) The project in which this interface's router belongs. If it
46+
* `project` - (Optional) The ID of the project in which this interface's router belongs. If it
4747
is not provided, the provider project is used. Changing this forces a new interface to be created.
4848

4949
* `region` - (Optional) The region this interface's router sits in. If not specified,

website/docs/r/compute_router_peer.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The following arguments are supported:
5151
* `advertised_route_priority` - (Optional) The priority of routes advertised to this BGP peer.
5252
Changing this forces a new peer to be created.
5353

54-
* `project` - (Optional) The project in which this peer's router belongs. If it
54+
* `project` - (Optional) The ID of the project in which this peer's router belongs. If it
5555
is not provided, the provider project is used. Changing this forces a new peer to be created.
5656

5757
* `region` - (Optional) The region this peer's router sits in. If not specified,

0 commit comments

Comments
 (0)