Skip to content

Commit

Permalink
Added terraform stuff to create resource group and configure azure pr…
Browse files Browse the repository at this point in the history
…ovider
  • Loading branch information
qtsathish committed Dec 25, 2021
1 parent 394cd48 commit 874c225
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dec21/activity3/providers.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.46.0"
}
}
}

# Configure the Microsoft Azure Provider
provider "azurerm" {
features {}
}
8 changes: 8 additions & 0 deletions Dec21/activity3/resourcegroups.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "azurerm_resource_group" "ntierrg" {
location = "eastus"
name = "ntier-rg"
tags = {
Env = "Development"
}

}

0 comments on commit 874c225

Please sign in to comment.