Created
October 1, 2021 06:05
-
-
Save danielplawgo/24abf4d9034d539716d977be4e35e771 to your computer and use it in GitHub Desktop.
Terraform i Azure
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.46.0" | |
} | |
} | |
required_version = ">= 0.14.9" | |
} | |
provider "azurerm" { | |
features {} | |
} |
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.46.0" | |
} | |
} | |
required_version = ">= 0.14.9" | |
} | |
provider "azurerm" { | |
features {} | |
} | |
resource "azurerm_resource_group" "example" { | |
name = "demos-resource-group" | |
location = "West Europe" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment