Skip to content

Commit

Permalink
Merge pull request #2110 from terraform-providers/b/ds-roledef-data-a…
Browse files Browse the repository at this point in the history
…ctions

Adding not_data_actions and data_actions to azurerm_role_definition datasource
  • Loading branch information
katbyte authored Oct 18, 2018
2 parents 682b57c + 200265b commit 35b019c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions azurerm/data_source_role_definition.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
},
},
},
Expand Down

0 comments on commit 35b019c

Please sign in to comment.