Skip to content

Commit

Permalink
azurerm_network_interface: added missing property ip_configuration.0a…
Browse files Browse the repository at this point in the history
…pplication_security_group_ids
  • Loading branch information
katbyte committed Jan 4, 2019
1 parent 9203f92 commit cb54069
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 cb54069

Please sign in to comment.