Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azurerm_virtual_desktop_application_group - Fix azurerm_virtual_desktop_application_group force new on host_pool_id change #19689

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ func resourceVirtualDesktopApplicationGroup() *pluginsdk.Resource {
"host_pool_id": {
Type: pluginsdk.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: hostpool.ValidateHostPoolID,
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ The following arguments are supported:

* `type` - (Required) Type of Virtual Desktop Application Group. Valid options are `RemoteApp` or `Desktop` application groups. Changing this forces a new resource to be created.

* `host_pool_id` - (Required) Resource ID for a Virtual Desktop Host Pool to associate with the
Virtual Desktop Application Group.
* `host_pool_id` - (Required) Resource ID for a Virtual Desktop Host Pool to associate with the Virtual Desktop Application Group. Changing the name forces a new resource to be created.

* `friendly_name` - (Optional) Option to set a friendly name for the Virtual Desktop Application Group.

Expand Down