mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-26 01:29:36 -05:00
Marks the links property as deprecated
This commit is contained in:
parent
c2597e760c
commit
49bb47b68d
1 changed files with 6 additions and 5 deletions
|
|
@ -259,11 +259,12 @@ func resourceDockerContainer() *schema.Resource {
|
|||
},
|
||||
|
||||
"links": &schema.Schema{
|
||||
Type: schema.TypeSet,
|
||||
Optional: true,
|
||||
ForceNew: true,
|
||||
Elem: &schema.Schema{Type: schema.TypeString},
|
||||
Set: schema.HashString,
|
||||
Type: schema.TypeSet,
|
||||
Optional: true,
|
||||
ForceNew: true,
|
||||
Elem: &schema.Schema{Type: schema.TypeString},
|
||||
Set: schema.HashString,
|
||||
Deprecated: "The --link flag is a legacy feature of Docker. It may eventually be removed.",
|
||||
},
|
||||
|
||||
"ip_address": &schema.Schema{
|
||||
|
|
|
|||
Loading…
Reference in a new issue