Skip to content

Commit

Permalink
lxd/resource_lxd_publish_image: add instance and deprecate container
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Deziel <[email protected]>
  • Loading branch information
simondeziel committed Nov 14, 2023
1 parent de258b5 commit bc5cbac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lxd/resource_lxd_publish_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ func resourceLxdPublishImage() *schema.Resource {

Schema: map[string]*schema.Schema{
"container": {
Type: schema.TypeString,
ForceNew: false,
Optional: true,
Deprecated: "Use instance instead",
},
"instance": {
Type: schema.TypeString,
ForceNew: true,
Required: true,
Expand Down

0 comments on commit bc5cbac

Please sign in to comment.