From 200265bd6b42e18955d4871c5fb9dc5bdc80e299 Mon Sep 17 00:00:00 2001 From: kt Date: Wed, 17 Oct 2018 22:16:25 -0700 Subject: [PATCH] Added mising properties not_data_actions and data_actions to azurerm_role_definition datasource --- azurerm/data_source_role_definition.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/azurerm/data_source_role_definition.go b/azurerm/data_source_role_definition.go index bf2c94bfaeca..bddc2aa59616 100644 --- a/azurerm/data_source_role_definition.go +++ b/azurerm/data_source_role_definition.go @@ -51,6 +51,22 @@ func dataSourceArmRoleDefinition() *schema.Resource { Type: schema.TypeString, }, }, + "data_actions": { + Type: schema.TypeSet, + Optional: true, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Set: schema.HashString, + }, + "not_data_actions": { + Type: schema.TypeSet, + Optional: true, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Set: schema.HashString, + }, }, }, },