Skip to content

Commit

Permalink
Merge pull request #2599 from terraform-providers/schema_panic/network
Browse files Browse the repository at this point in the history
data.azurerm_network_interface: added missing property ip_configuration.0.application_security_group_ids
  • Loading branch information
tombuildsstuff authored Jan 4, 2019
2 parents 75a7358 + cb54069 commit a8dc135
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions azurerm/data_source_network_interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@ func dataSourceArmNetworkInterface() *schema.Resource {
Set: schema.HashString,
},

"application_security_group_ids": {
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
},

"primary": {
Type: schema.TypeBool,
Computed: true,
Expand Down

0 comments on commit a8dc135

Please sign in to comment.