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_host_pool - remove ForceNew from preferred_app_group_type #26333

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 @@ -138,7 +138,6 @@ func resourceVirtualDesktopHostPool() *pluginsdk.Resource {
"preferred_app_group_type": {
Type: pluginsdk.TypeString,
Optional: true,
ForceNew: true,
Description: "Preferred App Group type to display",
ValidateFunc: validation.StringInSlice([]string{
string(hostpool.PreferredAppGroupTypeDesktop),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ resource "azurerm_virtual_desktop_host_pool" "test" {
start_vm_on_connect = true
load_balancer_type = "BreadthFirst"
maximum_sessions_allowed = 100
preferred_app_group_type = "Desktop"
preferred_app_group_type = "RailApplications"
custom_rdp_properties = "audiocapturemode:i:1;audiomode:i:0;"

tags = {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/virtual_desktop_host_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The following arguments are supported:
* `maximum_sessions_allowed` - (Optional) A valid integer value from 0 to 999999 for the maximum number of users that have concurrent sessions on a session host.
Should only be set if the `type` of your Virtual Desktop Host Pool is `Pooled`.

* `preferred_app_group_type` - (Optional) Option to specify the preferred Application Group type for the Virtual Desktop Host Pool. Valid options are `None`, `Desktop` or `RailApplications`. Default is `Desktop`. Changing this forces a new resource to be created.
* `preferred_app_group_type` - (Optional) Option to specify the preferred Application Group type for the Virtual Desktop Host Pool. Valid options are `None`, `Desktop` or `RailApplications`. Default is `Desktop`.

* `scheduled_agent_updates` - (Optional) A `scheduled_agent_updates` block as defined below. This enables control of when Agent Updates will be applied to Session Hosts.

Expand Down
Loading