An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

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({
environment = string
location = string
market = string
product_name = string
resource_group_type = string
})
| n/a | yes |
| 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 |