Skip to content

Instantly share code, notes, and snippets.

@matt-FFFFFF
Created November 7, 2024 16:42
Show Gist options
  • Save matt-FFFFFF/9e98c1f7b593a6351f11363a20436954 to your computer and use it in GitHub Desktop.
Save matt-FFFFFF/9e98c1f7b593a6351f11363a20436954 to your computer and use it in GitHub Desktop.
terraform {
required_version = "~> 1.6"
required_providers {
azapi = {
source = "azure/azapi"
version = "~> 2.0"
}
}
}
resource "azapi_resource" "rg" {
type = "Microsoft.Resources/resourceGroups@2024-03-01"
name = "myResourceGroup"
location = "swedencentral"
tags = {
platform_tag = "terraform"
}
lifecycle {
ignore_changes = [tags]
}
}
resource "azapi_update_resource" "rg" {
type = "Microsoft.Resources/resourceGroups@2024-03-01"
resource_id = azapi_resource.rg.id
body = {
tags = {
application = "myApp2"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment