Created
November 7, 2024 16:42
-
-
Save matt-FFFFFF/9e98c1f7b593a6351f11363a20436954 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_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