Skip to content

Commit

Permalink
Add tags property to the azurerm_load_balancer resource
Browse files Browse the repository at this point in the history
Signed-off-by: Omer Demirok <odemirok@chef.io>
  • Loading branch information
Omer Demirok authored and Stuart Paterson committed Jul 7, 2020
1 parent f6be4bc commit aa1070b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions docs/resources/azurerm_load_balancers.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ Filters the results to include only those load balancers which reside in a given
- `sku`
- `location`
- `properties`
- `tags`
- `type`

### ids
Expand All @@ -116,9 +115,6 @@ Resource location, e.g. `eastus`.
### properties
A collection of additional configuration properties related to the Load Balancer, e.g. `loadBalancingRules`.

### tag
Resource tags applied to the Load balancer.

### type
The type of Resource, typically `Microsoft.Network/loadBalancers`.

Expand Down
1 change: 1 addition & 0 deletions libraries/azurerm_load_balancer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class AzurermLoadBalancer < AzurermSingularResource
type
sku
properties
tags
).freeze

attr_reader(*ATTRS)
Expand Down
1 change: 0 additions & 1 deletion libraries/azurerm_load_balancers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class AzurermLoadBalancers < AzurermPluralResource
.register_column(:skus, field: :sku)
.register_column(:locations, field: :location)
.register_column(:properties, field: :properties)
.register_column(:tags, field: :tag)
.register_column(:types, field: :type)
.install_filter_methods_on_resource(self, :table)

Expand Down

0 comments on commit aa1070b

Please sign in to comment.