This module deploys an Azure Function App with a Function, which moves every VSE Subscription from a source management group to a target management group, based on the Quota ID MSDN_2014_09_01. The function runs every 5 minutes.
To use this module, the source and target Management Groups you want to use for Subscription moving are required. The Management Groups are recommended to have the same display name as the ID for ease of use.
Only the main.tf needs to be run to deploy the function app with the function, which will run immediately.
provider "azurerm" {
features {}
}
resource "azurerm_management_group" "source" {
name = "Test-Source"
}
resource "azurerm_management_group" "target" {
name = "Test-Target"
}
module "vse_subscription_mover" {
source = "../.."
location = "westeurope"
resource_group_name = "rg-SubMover-dev-01"
function_app_name = "func-dev-SubMover-test-01"
app_service_plan_name = "plan-dev-SubMover-test-01"
storage_account_name = "stfuntestsubmover01"
application_insights_name = "appi-SubMover-dev-01"
source_management_group = azurerm_management_group.source
target_management_group = azurerm_management_group.target
}
Name | Version |
---|---|
azurerm | >= 3.7.0 |
Name | Description | Type | Default | Required |
---|---|---|---|---|
app_service_plan_name | Name of the application service plan used for the Azure Function App. | string |
n/a | yes |
application_insights_name | Name of the Application Insights, which will show Monitoring information of the Azure Function App. | string |
n/a | yes |
function_app_name | Name of the Azure Function App in which the function will be deployed. | string |
n/a | yes |
location | Name of the location where the resources will be provisioned. | string |
n/a | yes |
resource_group_name | Name of the resource group in which to create the resources. Changing this forces new resources to be created. | string |
n/a | yes |
source_management_group | The source management group from which the Subscriptions will be moved from. The name used here is not the display name, it is the ID shown next to the display name in the Azure Portal Management Group view. | object({ |
n/a | yes |
storage_account_name | Name of the storage account used for the Azure Function App. | string |
n/a | yes |
target_management_group | The target management group to which the subscriptions will be moved. The name used here is not the display name, it is the ID shown next to the display name in the Azure Portal Management Group view. | object({ |
n/a | yes |
No outputs.
Used
only includes resource blocks. for_each
and count
meta arguments, as well as resource blocks of modules are not considered.
No modules.
Name | Type |
---|---|
azurerm_application_insights.this | resource |
azurerm_resource_group.this | resource |
azurerm_role_assignment.role_assignment_storage | resource |
azurerm_role_assignment.source_mgmt_group | resource |
azurerm_role_assignment.target_mgmt_group | resource |
azurerm_service_plan.this | resource |
azurerm_storage_account.this | resource |
azurerm_storage_blob.storage_blob_function | resource |
azurerm_storage_container.storage_container_function | resource |
azurerm_windows_function_app.this | resource |
archive_file.file_function_app | data source |
azurerm_role_definition.management_group_contributor | data source |
azurerm_role_definition.user_access_administrator | data source |
Please use Pull requests to contribute.
When a new Feature or Fix is ready to be released, create a new Github release and adhere to Semantic Versioning 2.0.0.