diff --git a/README.md b/README.md index a3e6a5c..fc57892 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,6 @@ The following requirements are needed by this module: The following providers are used by this module: -- [azuread](#provider\_azuread) - - [azurerm](#provider\_azurerm) (>= 3.71.0) - [random](#provider\_random) (>= 3.5.0) @@ -34,11 +32,6 @@ The following resources are used by this module: - [azurerm_role_assignment.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/role_assignment) (resource) - [azurerm_virtual_desktop_scaling_plan.scplan](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/virtual_desktop_scaling_plan) (resource) - [random_id.telem](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/id) (resource) -- [azuread_service_principal.spn](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/data-sources/service_principal) (data source) -- [azurerm_client_config.current](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/client_config) (data source) -- [azurerm_role_definition.power_role](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/role_definition) (data source) -- [azurerm_role_definition.role](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/role_definition) (data source) -- [azurerm_subscription.current](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/subscription) (data source) - [azurerm_virtual_desktop_host_pool.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/virtual_desktop_host_pool) (data source) @@ -52,12 +45,6 @@ Description: The name of the AVD Host Pool to assign the scaling plan to. Type: `string` -### [hostpooltype](#input\_hostpooltype) - -Description: The type of the AVD Host Pool to assign the scaling plan. - -Type: `string` - ### [location](#input\_location) Description: The Azure location where the resources will be deployed. diff --git a/examples/default/README.md b/examples/default/README.md index ca82b1b..9ab5e64 100644 --- a/examples/default/README.md +++ b/examples/default/README.md @@ -31,7 +31,6 @@ module "scplan" { location = data.azurerm_virtual_desktop_host_pool.name.location scalingplan = var.scalingplan hostpool = data.azurerm_virtual_desktop_host_pool.name.name - hostpooltype = var.hostpooltype } ``` @@ -83,14 +82,6 @@ Type: `string` Default: `"avdhostpool"` -### [hostpooltype](#input\_hostpooltype) - -Description: The type of the AVD Host Pool to assign the scaling plan. - -Type: `string` - -Default: `"Pooled"` - ### [resource\_group\_name](#input\_resource\_group\_name) Description: The resource group where the AVD Host Pool is deployed. diff --git a/examples/default/main.tf b/examples/default/main.tf index 0c07437..3ac7b3e 100644 --- a/examples/default/main.tf +++ b/examples/default/main.tf @@ -25,5 +25,4 @@ module "scplan" { location = data.azurerm_virtual_desktop_host_pool.name.location scalingplan = var.scalingplan hostpool = data.azurerm_virtual_desktop_host_pool.name.name - hostpooltype = var.hostpooltype } diff --git a/examples/default/variables.tf b/examples/default/variables.tf index e274354..79f8cdc 100644 --- a/examples/default/variables.tf +++ b/examples/default/variables.tf @@ -25,9 +25,3 @@ variable "resource_group_name" { default = "rg-avm-test" description = "The resource group where the AVD Host Pool is deployed." } - -variable "hostpooltype" { - type = string - default = "Pooled" - description = "The type of the AVD Host Pool to assign the scaling plan." -} diff --git a/examples/diagnostic/README.md b/examples/diagnostic/README.md index d4cde26..a3b0c5e 100644 --- a/examples/diagnostic/README.md +++ b/examples/diagnostic/README.md @@ -47,7 +47,6 @@ module "scplan" { location = data.azurerm_virtual_desktop_host_pool.name.location scalingplan = var.scalingplan hostpool = data.azurerm_virtual_desktop_host_pool.name.name - hostpooltype = var.hostpooltype diagnostic_settings = { to_law = { name = "to-storage-account" @@ -106,14 +105,6 @@ Type: `string` Default: `"avdhostpool"` -### [hostpooltype](#input\_hostpooltype) - -Description: The type of the AVD Host Pool to assign the scaling plan. - -Type: `string` - -Default: `"Pooled"` - ### [location](#input\_location) Description: The Azure location where the resources will be deployed. diff --git a/examples/diagnostic/main.tf b/examples/diagnostic/main.tf index 539f5c8..d322ce9 100644 --- a/examples/diagnostic/main.tf +++ b/examples/diagnostic/main.tf @@ -41,7 +41,6 @@ module "scplan" { location = data.azurerm_virtual_desktop_host_pool.name.location scalingplan = var.scalingplan hostpool = data.azurerm_virtual_desktop_host_pool.name.name - hostpooltype = var.hostpooltype diagnostic_settings = { to_law = { name = "to-storage-account" diff --git a/examples/diagnostic/variables.tf b/examples/diagnostic/variables.tf index 1d42544..37782e7 100644 --- a/examples/diagnostic/variables.tf +++ b/examples/diagnostic/variables.tf @@ -31,9 +31,3 @@ variable "location" { default = "eastus" description = "The Azure location where the resources will be deployed." } - -variable "hostpooltype" { - type = string - default = "Pooled" - description = "The type of the AVD Host Pool to assign the scaling plan." -}