Skip to content

Commit

Permalink
added missing tags property to data.azurerm_container_registry
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte committed Jan 6, 2019
1 parent 4b2bf1b commit 5bc17f3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
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.

0 comments on commit 5bc17f3

Please sign in to comment.