This module manages the hashicorp/azurerm management resources. For more information see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs > management
<-- This file is autogenerated, please do not change. -->
Name | Version |
---|---|
terraform | >=1.5 |
azurerm | >=2.19.0, <4.0 |
Name | Version |
---|---|
azurerm | >=2.19.0, <4.0 |
Name | Type |
---|---|
azurerm_management_lock.management_lock | resource |
Name | Description | Type | Default | Required |
---|---|---|---|---|
management_lock | resource definition, default settings are defined within locals and merged with var settings | any |
{} |
no |
Name | Description |
---|---|
management_lock | Outputs all attributes of resource_type. |
variables | Displays all configurable variables passed by the module. default = predefined values per module. merged = result of merging the default values and custom values passed to the module |
Minimal configuration to install the desired resources with the module
module "container" {
source = "registry.terraform.io/telekom-mms/container/azurerm"
container_registry = {
crmms = {
location = "westeurope"
resource_group_name = "rg-mms-github"
}
}
}
module "management" {
source = "registry.terraform.io/telekom-mms/management/azurerm"
management_lock = {
container_registry = {
location = "westeurope"
scope = module.container.container_registry["crmms"].id
}
}
}
Advanced configuration to install the desired resources with the module
module "container" {
source = "registry.terraform.io/telekom-mms/container/azurerm"
container_registry = {
crmms = {
location = "westeurope"
resource_group_name = "rg-mms-github"
}
}
}
module "management" {
source = "registry.terraform.io/telekom-mms/management/azurerm"
management_lock = {
container_registry = {
name = "restrict_delete"
scope = module.container.container_registry["crmms"].id
notes = "protect resource"
}
}
}