Skip to content

Commit

Permalink
fix #24402 (#24418)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyeqf authored Jan 9, 2024
1 parent 5610c7b commit 92444de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,8 @@ func (a RoleDefinitionDataSource) Read() sdk.ResourceFunc {
}

state := RoleDefinitionDataSourceModel{
Scope: config.Scope,
// Though the property is called "Name", it's UUID in fact.
RoleDefinitionId: pointer.From(role.Name),
Scope: config.Scope,
RoleDefinitionId: defId,
}

state.Name = pointer.From(role.RoleName)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ func TestAccRoleDefinitionDataSource_basic(t *testing.T) {
Config: RoleDefinitionDataSource{}.basic(id, data),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("name").Exists(),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("description").Exists(),
check.That(data.ResourceName).Key("type").Exists(),
check.That(data.ResourceName).Key("permissions.#").HasValue("1"),
Expand All @@ -47,7 +46,6 @@ func TestAccRoleDefinitionDataSource_basicByName(t *testing.T) {
Config: RoleDefinitionDataSource{}.byName(id, data),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("name").Exists(),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("description").Exists(),
check.That(data.ResourceName).Key("type").Exists(),
check.That(data.ResourceName).Key("permissions.#").HasValue("1"),
Expand All @@ -70,7 +68,6 @@ func TestAccRoleDefinitionDataSource_builtIn_contributor(t *testing.T) {
Config: RoleDefinitionDataSource{}.builtIn("Contributor"),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("id").HasValue("/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c"),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("description").Exists(),
check.That(data.ResourceName).Key("type").Exists(),
check.That(data.ResourceName).Key("permissions.#").HasValue("1"),
Expand Down Expand Up @@ -98,8 +95,6 @@ func TestAccRoleDefinitionDataSource_builtIn_owner(t *testing.T) {
Config: RoleDefinitionDataSource{}.builtIn("Owner"),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("id").HasValue("/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635"),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("description").Exists(),
check.That(data.ResourceName).Key("type").Exists(),
check.That(data.ResourceName).Key("permissions.#").HasValue("1"),
Expand All @@ -119,7 +114,6 @@ func TestAccRoleDefinitionDataSource_builtIn_reader(t *testing.T) {
Config: RoleDefinitionDataSource{}.builtIn("Reader"),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("id").HasValue("/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7"),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("description").Exists(),
check.That(data.ResourceName).Key("type").Exists(),
check.That(data.ResourceName).Key("permissions.#").HasValue("1"),
Expand All @@ -139,7 +133,6 @@ func TestAccRoleDefinitionDataSource_builtIn_virtualMachineContributor(t *testin
Config: RoleDefinitionDataSource{}.builtIn("Virtual Machine Contributor"),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("id").HasValue("/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c"),
check.That(data.ResourceName).Key("role_definition_id").IsUUID(),
check.That(data.ResourceName).Key("description").Exists(),
check.That(data.ResourceName).Key("type").Exists(),
check.That(data.ResourceName).Key("permissions.#").HasValue("1"),
Expand Down

0 comments on commit 92444de

Please sign in to comment.