https://github.com/Azure-Terraform/terraform-azurerm-resource-group
Terraform Resource Group Module
https://github.com/Azure-Terraform/terraform-azurerm-resource-group
Last synced: 5 months ago
JSON representation
Terraform Resource Group Module
- Host: GitHub
- URL: https://github.com/Azure-Terraform/terraform-azurerm-resource-group
- Owner: Azure-Terraform
- License: mit
- Created: 2020-05-13T09:53:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-17T17:16:42.000Z (about 3 years ago)
- Last Synced: 2024-08-03T22:19:29.458Z (9 months ago)
- Language: HCL
- Homepage:
- Size: 16.6 KB
- Stars: 4
- Watchers: 6
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - Azure-Terraform/terraform-azurerm-resource-group - Terraform Resource Group Module (HCL)
README
# Azure - Resource Group Module
## Introduction
This module will create a new Resource Group in Azure.
Naming for this resource is as follows, based on published RBA naming convention (https://github.com/openrba/python-azure-naming).
---
## Providers
| Name | Version |
|------|---------|
| azurerm | >= 2.0.0 |
| random | >= 2.0.0 |## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:-----:|
| location | Azure Region | `string` | n/a | yes |
| names | Names to be applied to resources (inclusive) |object({| n/a | yes |
environment = string
location = string
market = string
product_name = string
resource_group_type = string
})
| tags | Tags to be applied to resources (inclusive) | `map(string)` | n/a | yes |
| unique\_name | Freeform input to append to resource group name. Set to 'true', to append 5 random integers | `string` | n/a | yes |## Outputs
| Name | Description |
|------|-------------|
| id | Resource group id |
| location | Resource group location |
| name | Resource group name |
| rg | Resource group resource |