From cb540695a3aa6f0a04cb58d34051ad25fcaced5e Mon Sep 17 00:00:00 2001 From: kt Date: Thu, 3 Jan 2019 19:48:55 -0800 Subject: [PATCH] azurerm_network_interface: added missing property ip_configuration.0application_security_group_ids --- azurerm/data_source_network_interface.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/azurerm/data_source_network_interface.go b/azurerm/data_source_network_interface.go index a0d523ef1112..40aabb81e9c3 100644 --- a/azurerm/data_source_network_interface.go +++ b/azurerm/data_source_network_interface.go @@ -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,