Skip to content

Commit

Permalink
Merge pull request #2607 from terraform-providers/schema-panic/contai…
Browse files Browse the repository at this point in the history
…ner_reg

data.azurerm_container_registry: added missing tags property
  • Loading branch information
katbyte authored Jan 6, 2019
2 parents d59dbca + 1df3da5 commit ba0bb15
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,40 @@ func dataSourceArmContainerRegistry() *schema.Resource {
},

"resource_group_name": resourceGroupNameForDataSourceSchema(),
"location": locationForDataSourceSchema(),

"location": locationForDataSourceSchema(),

"admin_enabled": {
Type: schema.TypeBool,
Computed: true,
},

"admin_password": {
Type: schema.TypeString,
Computed: true,
},

"admin_username": {
Type: schema.TypeString,
Computed: true,
},

"login_server": {
Type: schema.TypeString,
Computed: true,
},

"sku": {
Type: schema.TypeString,
Computed: true,
},

"storage_account_id": {
Type: schema.TypeString,
Computed: true,
},

"tags": tagsForDataSourceSchema(),
},
}
}
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_virtual_machine_scale_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4790,7 +4790,7 @@ resource "azurerm_virtual_machine_scale_set" "test" {
health_probe_id = "${azurerm_lb_probe.test.id}"
depends_on = ["azurerm_lb_rule.test"]
%[4]s#_#" sku {
%[4]s sku {
name = "Standard_F2"
tier = "Standard"
capacity = 1
Expand Down

0 comments on commit ba0bb15

Please sign in to comment.