mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-20 22:59:42 -05:00
9 lines
179 B
Terraform
9 lines
179 B
Terraform
|
|
### With alias
|
||
|
|
data "docker_plugin" "by_alias" {
|
||
|
|
alias = "sample-volume-plugin:latest"
|
||
|
|
}
|
||
|
|
|
||
|
|
### With ID
|
||
|
|
data "docker_plugin" "by_id" {
|
||
|
|
id = "e9a9db917b3bfd6706b5d3a66d4bceb9f"
|
||
|
|
}
|