Skip to content

Commit

Permalink
wip: hashicorp#2047 fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorioland committed Oct 10, 2018
1 parent ac6455f commit 97dd6b5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions azurerm/resource_arm_container_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 97dd6b5

Please sign in to comment.