Last active
September 27, 2021 12:47
-
-
Save IPvPho/f3379b5c47ffea16361db0f9e14e7ee3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
azurerm = { | |
source = "hashicorp/azurerm" | |
version = "~> 2.65" | |
} | |
} | |
required_version = ">= 0.15.0" | |
} | |
provider "azurerm" { | |
features {} | |
} | |
resource "azurerm_resource_group" "rg" { | |
name = "myTFResourceGroup" | |
location = "westus2" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment