Skip to content

Commit b097e57

Browse files
authored
Update Contributor Docs and Resource-Specific Import Examples to Reflect Multi-Project Support (#517)
* Update contributing docs for multi-project support * Update individual resource docs to reflect multi-project support * Regenerate docs with `make gencheck` * Adjust checklist wording * Add changelog for PR * Remove redundant custom schema * Update packer_image_iteration docs
1 parent 82fe9a7 commit b097e57

File tree

29 files changed

+170
-94
lines changed

29 files changed

+170
-94
lines changed

.changelog/517.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:improvement
2+
Documentation: Update contributor documentation and resource-specific import examples to reflect multi-project support.
3+
```

contributing/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $ go generate
6262

6363
## Changelogs
6464

65-
This repo requires that a chagnelog file be added in all pull requests. The name of the file must follow `[PR #].txt` and must reside in the `.changelog` directory. The contents must have the following formatting:
65+
This repo requires that a changelog file be added in all pull requests. The name of the file must follow `[PR #].txt` and must reside in the `.changelog` directory. The contents must have the following formatting:
6666

6767
~~~
6868
```release-note:TYPE

contributing/checklist-resource-import.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Adding import support for Terraform resources will allow existing infrastructure
55
Comprehensive code examples and information about resource import support can be found in the [Extending Terraform documentation](https://www.terraform.io/docs/extend/resources/import.html).
66

77
- [ ] __Uses Context-Aware Import Function__: The context-aware `StateContext` function should be used over the deprecated `State` function.
8-
- [ ] __Does Not Use Project ID In Import Identifier__: There should not be a project ID present in the import identifier. Instead of the user providing a project ID explicitly, the provider uses the authentication scope to determine which project is accessible. This prevents the user from needing to locate and provide their project ID. `client.Config.ProjectID` should be used to retrieve the implied project ID.
8+
- [ ] __Supports Optional Project ID In Import Identifier__: If the resource has multi-project support, there should be an optional `{project_id}:` prefix for the import identifier. If the user does not provide a project ID explicitly, `client.Config.ProjectID` should be used to retrieve the implied project ID from the provider. The user may provide a `project_id` to the provider, otherwise the provider uses the authentication scope to determine the oldest accessible project. This prevents the user from needing to locate and provide their project ID for single-project organizations.
99
- [ ] __Uses Passthrough If Possible__: If the import identifier can match the `id` of the resource, and this does not violate any other guidelines, the `ImportStatePassthroughContext` passthrough should be used.
1010
- [ ] __Specifies Minimal Import Identifier__: If more than one value needs to be specified in the import identifier, the minimal number of values should be used, and those values should be colon (`:`) separated.
1111
- [ ] __Includes Import Documentation__: There should be an import example at `examples/resources/<resource>/import.sh`, which will be used when generating the docs. The docs should then be regenerated using `go generate`, which will update files in the `docs/` directory.

contributing/checklist-resource.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Implementing a new resource is a good way to learn more about how Terraform inte
1212
- [ ] __Uses Globally Unique ID__: The `id` field needs to be globally unique. Since many of the HCP services use IDs that are only unique within a particular project, you may need to create an `id` for Terraform using the `linkURL()` helper function. This function will produce an `id` of the following format: `/project/<project_id>/<resource_type>/<resource_id>`. If the service uses `ID` for a resource ID that is not globally unique, the resource ID should be specified in the Terraform schema as `<resource_type>_id`.
1313
- [ ] __Validates Fields Where Possible__: All fields that can be validated client-side should include a `ValidateFunc` or `ValidateDiagFunc`.
1414
These validations should favor validators provided by this project, or [Terraform `helper/validation` package](https://godoc.org/github.com/hashicorp/terraform/helper/validation) functions.
15-
- [ ] __Does Not Use Project ID Input__: There should not be an input field for `project_id` in the schema. Instead of the user providing a `project_id` explicitly, the provider uses the authentication scope to determine which project is accessible. This prevents the user from needing to locate and provide their project ID. `client.Config.ProjectID` should be used to retrieve the implied project ID.
15+
- [ ] __Supports Optional Project ID Input__: If the resource has multi-project support, there should be an optional input field for `project_id` in the schema. If the user does not provide a `project_id` for the resource, `client.Config.ProjectID` should be used to retrieve the implied project ID from the provider. The user may provide a `project_id` to the provider, otherwise the provider uses the authentication scope to determine the oldest accessible project. This prevents the user from needing to locate and provide their project ID for single-project organizations.
1616

1717
## CRUD Operations
1818

+25-24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
page_title: "Data Source hcp_packer_image_iteration - terraform-provider-hcp"
2+
page_title: "hcp_packer_image_iteration Data Source - terraform-provider-hcp"
33
subcategory: ""
44
description: |-
55
The Packer Image data source iteration gets the most recent iteration (or build) of an image, given a channel.
@@ -22,51 +22,52 @@ data "hcp_packer_image_iteration" "alpine" {
2222

2323
### Required
2424

25-
- **bucket_name** (String) The slug of the HCP Packer Registry image bucket to pull from.
26-
- **channel** (String) The channel that points to the version of the image you want.
25+
- `bucket_name` (String) The slug of the HCP Packer Registry image bucket to pull from.
26+
- `channel` (String) The channel that points to the version of the image you want.
2727

2828
### Optional
2929

30-
- **id** (String) The ID of this resource.
31-
- **timeouts** (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
30+
- `project_id` (String) The ID of the HCP project where the HCP Packer registry is located.
31+
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
3232

3333
### Read-Only
3434

35-
- **builds** (List of Object) Builds for this iteration. An iteration can have more than one build if it took more than one go to build all images. (see [below for nested schema](#nestedatt--builds))
36-
- **created_at** (String) Creation time of this iteration
37-
- **incremental_version** (Number) Incremental version of this iteration
38-
- **organization_id** (String) The ID of the organization this HCP Packer registry is located in.
39-
- **project_id** (String) The ID of the project this HCP Packer registry is located in.
35+
- `builds` (List of Object) Builds for this iteration. An iteration can have more than one build if it took more than one go to build all images. (see [below for nested schema](#nestedatt--builds))
36+
- `created_at` (String) Creation time of this iteration
37+
- `id` (String) The ID of this resource.
38+
- `incremental_version` (Number) Incremental version of this iteration
39+
- `organization_id` (String) The ID of the organization this HCP Packer registry is located in.
40+
- `revoke_at` (String) The revocation time of this iteration. This field will be null for any iteration that has not been revoked or scheduled for revocation.
4041

4142
<a id="nestedblock--timeouts"></a>
4243
### Nested Schema for `timeouts`
4344

4445
Optional:
4546

46-
- **default** (String)
47+
- `default` (String)
4748

4849

4950
<a id="nestedatt--builds"></a>
5051
### Nested Schema for `builds`
5152

5253
Read-Only:
5354

54-
- **cloud_provider** (String) Name of the cloud provider this image is stored-in, if any.
55-
- **component_type** (String) Name of the builder that built this. Ex: 'amazon-ebs.example'.
56-
- **created_at** (String) Creation time of this build.
57-
- **id** (String) HCP ID of this build.
58-
- **images** (List of Object) (see [below for nested schema](#nestedobjatt--builds--images))
59-
- **labels** (Map of String) Labels for this build.
60-
- **packer_run_uuid** (String) Packer generated UUID of this build.
61-
- **status** (String) Status of this build. DONE means that all images tied to this build were successfully built.
62-
- **updated_at** (String) Time this build was last updated.
55+
- `cloud_provider` (String) Name of the cloud provider this image is stored-in, if any.
56+
- `component_type` (String) Name of the builder that built this. Ex: 'amazon-ebs.example'.
57+
- `created_at` (String) Creation time of this build.
58+
- `id` (String) HCP ID of this build.
59+
- `images` (List of Object) (see [below for nested schema](#nestedobjatt--builds--images))
60+
- `labels` (Map of String) Labels for this build.
61+
- `packer_run_uuid` (String) Packer generated UUID of this build.
62+
- `status` (String) Status of this build. DONE means that all images tied to this build were successfully built.
63+
- `updated_at` (String) Time this build was last updated.
6364

6465
<a id="nestedobjatt--builds--images"></a>
6566
### Nested Schema for `builds.images`
6667

6768
Read-Only:
6869

69-
- **created_at** (String) Creation time of this image.
70-
- **id** (String) HCP ID of this image.
71-
- **image_id** (String) Cloud Image ID, URL string identifying this image for the builder that built it.
72-
- **region** (String) Region this image was built from. If any.
70+
- `created_at` (String) Creation time of this image.
71+
- `id` (String) HCP ID of this image.
72+
- `image_id` (String) Cloud Image ID, URL string identifying this image for the builder that built it.
73+
- `region` (String) Region this image was built from. If any.

docs/data-sources/packer_iteration.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
page_title: "Data Source hcp_packer_iteration - terraform-provider-hcp"
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "hcp_packer_iteration Data Source - terraform-provider-hcp"
34
subcategory: ""
45
description: |-
56
The Packer Image data source iteration gets the most recent iteration (or build) of an image, given a channel.
@@ -49,3 +50,5 @@ data "hcp_packer_iteration" "hardened-source" {
4950
Optional:
5051

5152
- `default` (String)
53+
54+

docs/resources/aws_network_peering.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ Optional:
9393
Import is supported using the following syntax:
9494

9595
```shell
96-
# The import ID is {hvn_id}:{peering_id}
96+
# Using an explicit project ID, the import ID is:
97+
# {project_id}:{hvn_id}:{peering_id}
98+
terraform import hcp_aws_network_peering.peer f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:11eb60b3-d4ec-5eed-aacc-0242ac120015
99+
# Using the provider-default project ID, the import ID is:
100+
# {hvn_id}:{peering_id}
97101
terraform import hcp_aws_network_peering.peer main-hvn:11eb60b3-d4ec-5eed-aacc-0242ac120015
98102
```

docs/resources/aws_transit_gateway_attachment.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ Optional:
115115
Import is supported using the following syntax:
116116

117117
```shell
118-
# The import ID is {hvn_id}:{transit_gateway_attachment_id}
118+
# Using an explicit project ID, the import ID is:
119+
# {project_id}:{hvn_id}:{transit_gateway_attachment_id}
120+
terraform import hcp_aws_transit_gateway_attachment.example f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:example-tgw-attachment
121+
# Using the provider-default project ID, the import ID is:
122+
# {hvn_id}:{transit_gateway_attachment_id}
119123
terraform import hcp_aws_transit_gateway_attachment.example main-hvn:example-tgw-attachment
120124
```

docs/resources/azure_peering_connection.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ Optional:
142142
Import is supported using the following syntax:
143143

144144
```shell
145-
# The import ID is {hvn_id}:{peering_id}
145+
# Using an explicit project ID, the import ID is:
146+
# {project_id}:{hvn_id}:{peering_id}
147+
terraform import hcp_azure_peering_connection.peer f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:199e7e96-4d5f-4456-91f3-b6cc71f1e561
148+
# Using the provider-default project ID, the import ID is:
149+
# {hvn_id}:{peering_id}
146150
terraform import hcp_azure_peering_connection.peer main-hvn:199e7e96-4d5f-4456-91f3-b6cc71f1e561
147151
```

docs/resources/boundary_cluster.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ Optional:
7373
Import is supported using the following syntax:
7474

7575
```shell
76-
# The import ID is {cluster_id}
76+
# Using an explicit project ID, the import ID is:
77+
# {project_id}:{cluster_id}
78+
terraform import hcp_boundary_cluster.example f709ec73-55d4-46d8-897d-816ebba28778:boundary-cluster
79+
# Using the provider-default project ID, the import ID is:
80+
# {cluster_id}
7781
terraform import hcp_boundary_cluster.example boundary-cluster
7882
```

docs/resources/consul_cluster.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ Optional:
9696
Import is supported using the following syntax:
9797

9898
```shell
99-
# The import ID is {cluster_id}
99+
# Using an explicit project ID, the import ID is:
100+
# {project_id}:{cluster_id}
101+
terraform import hcp_consul_cluster.example f709ec73-55d4-46d8-897d-816ebba28778:consul-cluster
102+
# Using the provider-default project ID, the import ID is:
103+
# {cluster_id}
100104
terraform import hcp_consul_cluster.example consul-cluster
101105
```

docs/resources/hvn.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ Optional:
7070
Import is supported using the following syntax:
7171

7272
```shell
73-
# The import ID is {hvn_id}
73+
# Using an explicit project ID, the import ID is:
74+
# {project_id}:{hvn_id}
75+
terraform import hcp_hvn.example f709ec73-55d4-46d8-897d-816ebba28778:main-hvn
76+
# Using the provider-default project ID, the import ID is:
77+
# {hvn_id}
7478
terraform import hcp_hvn.example main-hvn
7579
```

docs/resources/hvn_peering_connection.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ Optional:
7070
Import is supported using the following syntax:
7171

7272
```shell
73-
# The import ID requires the first HVN ID in the format {hvn_1_id}:{peering_id}
73+
# Only the first HVN ID is required (hvn_1_id), HVN 2 will be populated after import.
74+
75+
# Using an explicit project ID, the import ID is:
76+
# {project_id}:{hvn_1_id}:{peering_id}
77+
terraform import hcp_hvn_peering_connection.peer_1 f709ec73-55d4-46d8-897d-816ebba28778:hvn-1:peer-1
78+
# Using the provider-default project ID, the import ID is:
79+
# {hvn_1_id}:{peering_id}
7480
terraform import hcp_hvn_peering_connection.peer_1 hvn-1:peer-1
7581
```

docs/resources/hvn_route.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ Optional:
9191
Import is supported using the following syntax:
9292

9393
```shell
94-
# The import ID is {hvn_id}:{hvn_route_id}
94+
# Using an explicit project ID, the import ID is:
95+
# {project_id}:{hvn_id}:{hvn_route_id}
96+
terraform import hcp_hvn_route.example f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:example-hvn-route
97+
# Using the provider-default project ID, the import ID is:
98+
# {hvn_id}:{hvn_route_id}
9599
terraform import hcp_hvn_route.example main-hvn:example-hvn-route
96100
```

docs/resources/packer_channel.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ Optional:
110110
Import is supported using the following syntax:
111111

112112
```shell
113-
# The import ID requires the bucket and channel name in the following format {bucket_name}:{name}
113+
# Using an explicit project ID, the import ID is:
114+
# {project_id}:{bucket_name}:{channel_name}
115+
terraform import hcp_packer_channel.staging f709ec73-55d4-46d8-897d-816ebba28778:alpine:staging
116+
# Using the provider-default project ID, the import ID is:
117+
# {bucket_name}:{channel_name}
114118
terraform import hcp_packer_channel.staging alpine:staging
115119
```

docs/resources/vault_cluster.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ Optional:
132132
Import is supported using the following syntax:
133133

134134
```shell
135-
# The import ID is {cluster_id}
135+
# Using an explicit project ID, the import ID is:
136+
# {project_id}:{cluster_id}
137+
terraform import hcp_vault_cluster.example f709ec73-55d4-46d8-897d-816ebba28778:vault-cluster
138+
# Using the provider-default project ID, the import ID is:
139+
# {cluster_id}
136140
terraform import hcp_vault_cluster.example vault-cluster
137141
```
138142

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {hvn_id}:{peering_id}
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{hvn_id}:{peering_id}
3+
terraform import hcp_aws_network_peering.peer f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:11eb60b3-d4ec-5eed-aacc-0242ac120015
4+
# Using the provider-default project ID, the import ID is:
5+
# {hvn_id}:{peering_id}
26
terraform import hcp_aws_network_peering.peer main-hvn:11eb60b3-d4ec-5eed-aacc-0242ac120015
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {hvn_id}:{transit_gateway_attachment_id}
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{hvn_id}:{transit_gateway_attachment_id}
3+
terraform import hcp_aws_transit_gateway_attachment.example f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:example-tgw-attachment
4+
# Using the provider-default project ID, the import ID is:
5+
# {hvn_id}:{transit_gateway_attachment_id}
26
terraform import hcp_aws_transit_gateway_attachment.example main-hvn:example-tgw-attachment
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {hvn_id}:{peering_id}
2-
terraform import hcp_azure_peering_connection.peer main-hvn:199e7e96-4d5f-4456-91f3-b6cc71f1e561
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{hvn_id}:{peering_id}
3+
terraform import hcp_azure_peering_connection.peer f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:199e7e96-4d5f-4456-91f3-b6cc71f1e561
4+
# Using the provider-default project ID, the import ID is:
5+
# {hvn_id}:{peering_id}
6+
terraform import hcp_azure_peering_connection.peer main-hvn:199e7e96-4d5f-4456-91f3-b6cc71f1e561
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {cluster_id}
2-
terraform import hcp_boundary_cluster.example boundary-cluster
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{cluster_id}
3+
terraform import hcp_boundary_cluster.example f709ec73-55d4-46d8-897d-816ebba28778:boundary-cluster
4+
# Using the provider-default project ID, the import ID is:
5+
# {cluster_id}
6+
terraform import hcp_boundary_cluster.example boundary-cluster
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {cluster_id}
2-
terraform import hcp_consul_cluster.example consul-cluster
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{cluster_id}
3+
terraform import hcp_consul_cluster.example f709ec73-55d4-46d8-897d-816ebba28778:consul-cluster
4+
# Using the provider-default project ID, the import ID is:
5+
# {cluster_id}
6+
terraform import hcp_consul_cluster.example consul-cluster

examples/resources/hcp_hvn/import.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {hvn_id}
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{hvn_id}
3+
terraform import hcp_hvn.example f709ec73-55d4-46d8-897d-816ebba28778:main-hvn
4+
# Using the provider-default project ID, the import ID is:
5+
# {hvn_id}
26
terraform import hcp_hvn.example main-hvn
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
# The import ID requires the first HVN ID in the format {hvn_1_id}:{peering_id}
1+
# Only the first HVN ID is required (hvn_1_id), HVN 2 will be populated after import.
2+
3+
# Using an explicit project ID, the import ID is:
4+
# {project_id}:{hvn_1_id}:{peering_id}
5+
terraform import hcp_hvn_peering_connection.peer_1 f709ec73-55d4-46d8-897d-816ebba28778:hvn-1:peer-1
6+
# Using the provider-default project ID, the import ID is:
7+
# {hvn_1_id}:{peering_id}
28
terraform import hcp_hvn_peering_connection.peer_1 hvn-1:peer-1
+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {hvn_id}:{hvn_route_id}
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{hvn_id}:{hvn_route_id}
3+
terraform import hcp_hvn_route.example f709ec73-55d4-46d8-897d-816ebba28778:main-hvn:example-hvn-route
4+
# Using the provider-default project ID, the import ID is:
5+
# {hvn_id}:{hvn_route_id}
26
terraform import hcp_hvn_route.example main-hvn:example-hvn-route
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID requires the bucket and channel name in the following format {bucket_name}:{name}
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{bucket_name}:{channel_name}
3+
terraform import hcp_packer_channel.staging f709ec73-55d4-46d8-897d-816ebba28778:alpine:staging
4+
# Using the provider-default project ID, the import ID is:
5+
# {bucket_name}:{channel_name}
26
terraform import hcp_packer_channel.staging alpine:staging
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# The import ID is {cluster_id}
2-
terraform import hcp_vault_cluster.example vault-cluster
1+
# Using an explicit project ID, the import ID is:
2+
# {project_id}:{cluster_id}
3+
terraform import hcp_vault_cluster.example f709ec73-55d4-46d8-897d-816ebba28778:vault-cluster
4+
# Using the provider-default project ID, the import ID is:
5+
# {cluster_id}
6+
terraform import hcp_vault_cluster.example vault-cluster

internal/provider/resource_hvn_peering_connection.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,9 @@ func resourceHvnPeeringConnectionDelete(ctx context.Context, d *schema.ResourceD
279279
func resourceHvnPeeringConnectionImport(ctx context.Context, d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) {
280280
// with multi-projects, import arguments must become dynamic:
281281
// use explicit project ID with terraform import:
282-
// terraform import hcp_hvn_peering_connection.test {project_id}:{hvn_id}:{peering_id}
282+
// terraform import hcp_hvn_peering_connection.test {project_id}:{hvn_1_id}:{peering_id}
283283
// use default project ID from provider:
284-
// terraform import hcp_hvn_peering_connection.test {hvn_id}:{peering_id}
284+
// terraform import hcp_hvn_peering_connection.test {hvn_1_id}:{peering_id}
285285

286286
client := meta.(*clients.Client)
287287
projectID, hvnID, peeringID, err := parsePeeringResourceID(d.Id(), client.Config.ProjectID)

0 commit comments

Comments
 (0)