mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-20 22:59:42 -05:00
docs: fix r/registry_image truncated docs (#304)
This commit is contained in:
parent
bd2955cc81
commit
2ff0df9951
2 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ Optional:
|
||||||
|
|
||||||
- **auth_config** (Block List) The configuration for the authentication (see [below for nested schema](#nestedblock--build--auth_config))
|
- **auth_config** (Block List) The configuration for the authentication (see [below for nested schema](#nestedblock--build--auth_config))
|
||||||
- **build_args** (Map of String) Pairs for build-time variables in the form TODO
|
- **build_args** (Map of String) Pairs for build-time variables in the form TODO
|
||||||
- **build_id** (String) BuildID is an optional identifier that can be passed together with the build request. The
|
- **build_id** (String) BuildID is an optional identifier that can be passed together with the build request. The same identifier can be used to gracefully cancel the build with the cancel request.
|
||||||
- **cache_from** (List of String) Images to consider as cache sources
|
- **cache_from** (List of String) Images to consider as cache sources
|
||||||
- **cgroup_parent** (String) Optional parent cgroup for the container
|
- **cgroup_parent** (String) Optional parent cgroup for the container
|
||||||
- **cpu_period** (Number) The length of a CPU period in microseconds
|
- **cpu_period** (Number) The length of a CPU period in microseconds
|
||||||
|
|
|
||||||
|
|
@ -324,7 +324,7 @@ func resourceDockerRegistryImage() *schema.Resource {
|
||||||
},
|
},
|
||||||
"build_id": {
|
"build_id": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Description: "BuildID is an optional identifier that can be passed together with the build request. The ",
|
Description: "BuildID is an optional identifier that can be passed together with the build request. The same identifier can be used to gracefully cancel the build with the cancel request.",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
ForceNew: true,
|
ForceNew: true,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue