Files
opentf/website/docs/cli/commands/test/examples/provider_alias/main.tf
2023-12-01 08:34:59 +00:00

15 lines
222 B
HCL

terraform {
required_providers {
docker = {
source = "kreuzwerker/docker"
version = "3.0.2"
}
}
}
resource "docker_image" "build" {
name = "myapp"
build {
context = "."
}
}