mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-25 00:59:49 -05:00
* fix(service): remove image name suppress function * feat: add docker image data-source * docs(service): add example for iamge datasource usage * fix: image repo digest with tag determination * fix: always return a repoDigest * fix(image): deprecation notice for latest attribute * fix(ci): explicitly go get tfplugindocs * fix(ci): remove gocenter.io proxy
18 lines
344 B
HCL
18 lines
344 B
HCL
resource "docker_plugin" "test" {
|
|
name = "docker.io/tiborvass/sample-volume-plugin:latest"
|
|
alias = "sample:latest"
|
|
enabled = false
|
|
force_destroy = true
|
|
force_disable = true
|
|
enable_timeout = 60
|
|
env = [
|
|
"DEBUG=1"
|
|
]
|
|
|
|
grant_permissions {
|
|
name = "network"
|
|
value = [
|
|
"host"
|
|
]
|
|
}
|
|
}
|