/terraform-azurerm-resource-group

Terraform module for managing Azure resource groups

Primary LanguageHCLMIT LicenseMIT

terraform-azurerm-resource-group

Create a basic virtual network in Azure

This Terraform module deploys a Resource Group in Azure.

Usage

module "resourcegroup" {
    source              = "Azure/resource-group/azurerm"
    resource_group_name = "myapp"
    location            = "westus"
   
    tags                = {
                            environment = "dev"
                            costcenter  = "it"
                          }
}

Example adding a vnet in Resource group

variable "resource_group_name" { }

module "resourcegroup" {
    source              = "Azure/resource-group/azurerm"
    resource_group_name = "myapp"
    location            = "westus"
   
    tags                = {
                            environment = "dev"
                            costcenter  = "it"
                          }
}

resource "azurerm_virtual_network" "vnet" {
  name                = "myvnet"
  address_space       = ["10.0.0.0/16"]
  location            = "westus"
  resource_group_name = "${module.resourcegroup.resource_group_name}"
}

Test

Configurations

We provide 2 ways to build, run, and test the module on a local development machine. Native (Mac/Linux) or Docker.

Native (Mac/Linux)

Prerequisites

Environment setup

We provide simple script to quickly set up module development environment:

$ curl -sSL https://raw.githubusercontent.com/Azure/terramodtest/master/tool/env_setup.sh | sudo bash

Run test

Then simply run it in local shell:

$ cd $GOPATH/src/{directory_name}/
$ bundle install
$ rake build
$ rake e2e

Docker

We provide a Dockerfile to build a new image based FROM the microsoft/terraform-test Docker hub image which adds additional tools / packages specific for this module (see Custom Image section). Alternatively use only the microsoft/terraform-test Docker hub image by using these instructions.

Prerequisites

Custom Image

This builds the custom image:

$ docker build --build-arg BUILD_ARM_SUBSCRIPTION_ID=$ARM_SUBSCRIPTION_ID --build-arg BUILD_ARM_CLIENT_ID=$ARM_CLIENT_ID --build-arg BUILD_ARM_CLIENT_SECRET=$ARM_CLIENT_SECRET --build-arg BUILD_ARM_TENANT_ID=$ARM_TENANT_ID -t azure-rg .

This runs the build:

$ docker run azure-rg rake build

or

$ docker run --rm azure-rg /bin/bash -c "bundle install && rake build"

This runs the build and full tests:

$ docker run azure-rg rake full

or

$ docker run --rm azure-rg /bin/bash -c "bundle install && rake full"

Authors

Originally created by Mikael Krief

License

MIT

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.