Facebook
From dsfdsf, 2 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 223
  1. provider "azurerm" {
  2.   features {}
  3. }
  4.  
  5. terraform {
  6.    backend "azurerm" {
  7.     resource_group_name  = "tfStateRG"
  8.     storage_account_name = "tfstatemeritomf"
  9.     container_name       = "tfstate1"
  10.     key                  = "tfstate.tf"
  11.   }
  12. }
  13.  
  14.  
  15. resource "azurerm_resource_group" "testrg1" {
  16.         name = "testrg1"
  17.         location = "swedencentral"
  18. }