Skip to content

Instantly share code, notes, and snippets.

@danielplawgo
Created October 1, 2021 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielplawgo/24abf4d9034d539716d977be4e35e771 to your computer and use it in GitHub Desktop.
Save danielplawgo/24abf4d9034d539716d977be4e35e771 to your computer and use it in GitHub Desktop.
Terraform i Azure
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=2.46.0"
}
}
required_version = ">= 0.14.9"
}
provider "azurerm" {
features {}
}
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