mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-31 18:59:28 -05:00
docs: Fix example for docker_registry_image (#8308)
This commit is contained in:
parent
4700a9bbd9
commit
54ab3a99fb
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ data "docker_registry_image" "ubuntu" {
|
|||
}
|
||||
|
||||
resource "docker_image" "ubuntu" {
|
||||
name = "${data.docker_image.ubuntu.name}"
|
||||
name = "${data.docker_registry_image.ubuntu.name}"
|
||||
pull_trigger = "${data.docker_registry_image.ubuntu.sha256_digest}"
|
||||
}
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue