-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Role Assignments / Role Definitions #414
Conversation
``` $ acctests azurerm TestAccDataSourceAzureRMBuiltInRoleDefinition_ === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_contributor --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_contributor (8.53s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_owner --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_owner (7.24s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_reader --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_reader (7.39s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_virtualMachineContributor --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_virtualMachineContributor (7.36s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 30.535s ```
``` $ acctests azurerm TestAccDataSourceAzureRMBuiltInRoleDefinition_ === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_contributor --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_contributor (9.49s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_owner --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_owner (9.08s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_reader --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_reader (9.02s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_virtualMachineContributor --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_virtualMachineContributor (8.61s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 36.220s ```
``` $ acctests azurerm TestAccAzureRMRoleDefinition_ === RUN TestAccAzureRMRoleDefinition_basic --- PASS: TestAccAzureRMRoleDefinition_basic (13.76s) === RUN TestAccAzureRMRoleDefinition_complete --- PASS: TestAccAzureRMRoleDefinition_complete (13.51s) === RUN TestAccAzureRMRoleDefinition_update --- PASS: TestAccAzureRMRoleDefinition_update (22.73s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 50.032s ```
``` $ acctests azurerm TestAccDataSourceAzureRMBuiltInRoleDefinition_ === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_contributor --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_contributor (10.38s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_owner --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_owner (10.01s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_reader --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_reader (8.22s) === RUN TestAccDataSourceAzureRMBuiltInRoleDefinition_virtualMachineContributor --- PASS: TestAccDataSourceAzureRMBuiltInRoleDefinition_virtualMachineContributor (9.02s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 37.663s ```
``` $ acctests azurerm TestAccDataSourceAzureRMRoleDefinition_ === RUN TestAccDataSourceAzureRMRoleDefinition_basic --- PASS: TestAccDataSourceAzureRMRoleDefinition_basic (14.58s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 14.603s ```
``` $ acctests azurerm TestAccAzureRMRoleAssignment_ === RUN TestAccAzureRMRoleAssignment_builtin --- PASS: TestAccAzureRMRoleAssignment_builtin (18.73s) === RUN TestAccAzureRMRoleAssignment_custom --- PASS: TestAccAzureRMRoleAssignment_custom (20.58s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 39.335s ```
``` $ acctests azurerm TestAccAzureRMRoleAssignment_import === RUN TestAccAzureRMRoleAssignment_importBasic --- PASS: TestAccAzureRMRoleAssignment_importBasic (20.94s) === RUN TestAccAzureRMRoleAssignment_importCustom --- PASS: TestAccAzureRMRoleAssignment_importCustom (17.62s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 38.579s ```
``` $ acctests azurerm TestAccAzureRMRoleDefinition_import === RUN TestAccAzureRMRoleDefinition_importBasic --- PASS: TestAccAzureRMRoleDefinition_importBasic (16.32s) === RUN TestAccAzureRMRoleDefinition_importComplete --- PASS: TestAccAzureRMRoleDefinition_importComplete (14.12s) PASS ok github.com/terraform-providers/terraform-provider-azurerm/azurerm 30.462s ```
b9a3daa
to
3311808
Compare
client := meta.(*ArmClient).roleDefinitionsClient | ||
name := d.Get("name").(string) | ||
roleDefinitionIds := map[string]string{ | ||
"Contributor": "/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these values (Contributor
, Owner
, Reader
, VirtualMachineContributor
) specific to our account or azure in general?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They're Azure in General - this Data Source is mostly there so users don't have to refer to GUIDs tbh
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 hashibot-feedback@hashicorp.com. Thanks! |
Sorry this is one large PR, but everything depended on everything else :(
azurerm_role_definition
azurerm_role_assignment
azurerm_role_definition