Skip to content

Commit

Permalink
Update locals.telemetry.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-taylor committed Dec 21, 2023
1 parent dd7ef73 commit f50c83f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions locals.telemetry.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ locals {
)

# This is an empty ARM deployment template.
telem_arm_template_content = <<TEMPLATE
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [],
"outputs": {
"telemetry": {
"type": "String",
"value": "For more information, see https://aka.ms/avm/telemetry"
telem_arm_template_content = jsonencode(
{
"$schema" = "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion" = "1.0.0.0",
"parameters" = {},
"variables" = {},
"resources" = [],
"outputs" = {
"telemetry" = {
"type" = "String",
"value" = "For more information, see https://aka.ms/avm/telemetry"
}
}
}
}
}
TEMPLATE
)
}

0 comments on commit f50c83f

Please sign in to comment.