terraform-provider-docker/testdata/resources/docker_container/testAccDockerContainerimageId.tf
Martin 0d414d194b
fix: Prevent recreation of image name is intentionally set to a fixed value (#711)
* fix: Prevent recreation of image name is intentionally set to a fixed value

* chore: Fix linting and formatting
2025-04-25 08:49:44 +02:00

9 lines
198 B
HCL

resource "docker_image" "this" {
name = "%s"
}
resource "docker_container" "foo" {
image = docker_image.this.name
name = "foobar"
command = ["sh", "-c", "while true ;do wait ;done"]
}