Skip to content

Commit

Permalink
doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jensheerin committed Nov 13, 2023
1 parent cc12e00 commit 3a74c15
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 45 deletions.
13 changes: 0 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ The following requirements are needed by this module:

The following providers are used by this module:

- <a name="provider_azuread"></a> [azuread](#provider\_azuread)

- <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) (>= 3.71.0)

- <a name="provider_random"></a> [random](#provider\_random) (>= 3.5.0)
Expand All @@ -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)

<!-- markdownlint-disable MD013 -->
Expand All @@ -52,12 +45,6 @@ Description: The name of the AVD Host Pool to assign the scaling plan to.

Type: `string`

### <a name="input_hostpooltype"></a> [hostpooltype](#input\_hostpooltype)

Description: The type of the AVD Host Pool to assign the scaling plan.

Type: `string`

### <a name="input_location"></a> [location](#input\_location)

Description: The Azure location where the resources will be deployed.
Expand Down
9 changes: 0 additions & 9 deletions examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
```

Expand Down Expand Up @@ -83,14 +82,6 @@ Type: `string`

Default: `"avdhostpool"`

### <a name="input_hostpooltype"></a> [hostpooltype](#input\_hostpooltype)

Description: The type of the AVD Host Pool to assign the scaling plan.

Type: `string`

Default: `"Pooled"`

### <a name="input_resource_group_name"></a> [resource\_group\_name](#input\_resource\_group\_name)

Description: The resource group where the AVD Host Pool is deployed.
Expand Down
1 change: 0 additions & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
6 changes: 0 additions & 6 deletions examples/default/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
9 changes: 0 additions & 9 deletions examples/diagnostic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -106,14 +105,6 @@ Type: `string`

Default: `"avdhostpool"`

### <a name="input_hostpooltype"></a> [hostpooltype](#input\_hostpooltype)

Description: The type of the AVD Host Pool to assign the scaling plan.

Type: `string`

Default: `"Pooled"`

### <a name="input_location"></a> [location](#input\_location)

Description: The Azure location where the resources will be deployed.
Expand Down
1 change: 0 additions & 1 deletion examples/diagnostic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 0 additions & 6 deletions examples/diagnostic/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

0 comments on commit 3a74c15

Please sign in to comment.