From 97dd6b526892dbeaf79a8ab7670262c6b3d3023d Mon Sep 17 00:00:00 2001 From: Julien Corioland Date: Wed, 10 Oct 2018 06:58:09 -0700 Subject: [PATCH] wip: #2047 fix typo in variable name --- azurerm/resource_arm_container_registry.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/azurerm/resource_arm_container_registry.go b/azurerm/resource_arm_container_registry.go index b6ef542b7610..72702f9ad733 100644 --- a/azurerm/resource_arm_container_registry.go +++ b/azurerm/resource_arm_container_registry.go @@ -57,15 +57,18 @@ func resourceArmContainerRegistry() *schema.Resource { Default: false, }, - "goreplication_enabled": { + "georeplication_enabled": { Type: schema.TypeBool, Optional: true, Default: false, }, + // todo: should be a list of locations to enable multiple geo-replications "georeplication_location": { - Type: schema.TypeString, - Optional: true, + Type: schema.TypeString, + Optional: true, + StateFunc: azureRMNormalizeLocation, + DiffSuppressFunc: azureRMSuppressLocationDiff, }, "storage_account_id": {