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: contributing/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ $ go generate
62
62
63
63
## Changelogs
64
64
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:
Copy file name to clipboardexpand all lines: contributing/checklist-resource-import.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Adding import support for Terraform resources will allow existing infrastructure
5
5
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).
6
6
7
7
-[ ]__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 provideruses 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.
9
9
-[ ]__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.
10
10
-[ ]__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.
11
11
-[ ]__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.
Copy file name to clipboardexpand all lines: contributing/checklist-resource.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Implementing a new resource is a good way to learn more about how Terraform inte
12
12
-[ ]__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`.
13
13
-[ ]__Validates Fields Where Possible__: All fields that can be validated client-side should include a `ValidateFunc` or `ValidateDiagFunc`.
14
14
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.
page_title: "hcp_packer_image_iteration Data Source - terraform-provider-hcp"
3
3
subcategory: ""
4
4
description: |-
5
5
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" {
22
22
23
23
### Required
24
24
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.
27
27
28
28
### Optional
29
29
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))
32
32
33
33
### Read-Only
34
34
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.
40
41
41
42
<aid="nestedblock--timeouts"></a>
42
43
### Nested Schema for `timeouts`
43
44
44
45
Optional:
45
46
46
-
-**default** (String)
47
+
-`default` (String)
47
48
48
49
49
50
<aid="nestedatt--builds"></a>
50
51
### Nested Schema for `builds`
51
52
52
53
Read-Only:
53
54
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.
63
64
64
65
<aid="nestedobjatt--builds--images"></a>
65
66
### Nested Schema for `builds.images`
66
67
67
68
Read-Only:
68
69
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.
0 commit comments