mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-29 11:09:36 -05:00
* feat: Support registries with no auth. * tests: Test registry with disabled auth. * docs: Update provider documentation.
12 lines
No EOL
304 B
HCL
12 lines
No EOL
304 B
HCL
provider "docker" {
|
|
alias = "private"
|
|
registry_auth {
|
|
address = "%s"
|
|
auth_disabled = true
|
|
}
|
|
}
|
|
data "docker_registry_image" "foobar" {
|
|
provider = "docker.private"
|
|
name = "127.0.0.1:15002/tftest-service:v1"
|
|
insecure_skip_verify = true
|
|
} |