Skip to content

Commit 98e16cb

Browse files
committed
fixup! feat(internal/provider): add env_map to cached_image_resource
1 parent c6bb4c4 commit 98e16cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/cached_image.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The cached image resource can be used to retrieve a cached image produced by env
4848

4949
### Read-Only
5050

51-
- `env` (List of String, Sensitive) Computed envbuilder configuration to be set for the container in the form of a list of stringss of `key=value`. May contain secrets.
51+
- `env` (List of String, Sensitive) Computed envbuilder configuration to be set for the container in the form of a list of strings of `key=value`. May contain secrets.
5252
- `env_map` (Map of String, Sensitive) Computed envbuilder configuration to be set for the container in the form of a key-value map. May contain secrets.
5353
- `exists` (Boolean) Whether the cached image was exists or not for the given config.
5454
- `id` (String) Cached image identifier. This will generally be the image's SHA256 digest.

internal/provider/cached_image_resource.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ func (r *CachedImageResource) Schema(ctx context.Context, req resource.SchemaReq
231231

232232
// Computed "outputs".
233233
"env": schema.ListAttribute{
234-
MarkdownDescription: "Computed envbuilder configuration to be set for the container in the form of a list of stringss of `key=value`. May contain secrets.",
234+
MarkdownDescription: "Computed envbuilder configuration to be set for the container in the form of a list of strings of `key=value`. May contain secrets.",
235235
ElementType: types.StringType,
236236
Computed: true,
237237
Sensitive: true,

0 commit comments

Comments
 (0)