Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 29, 2025
1 parent 2bf2739 commit d566ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rolesanywhere/role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ locals {
}

resource "aws_rolesanywhere_profile" "role" {
name = local.role_name
name = var.role_name
enabled = true
duration_seconds = var.max_session_duration
role_arns = [aws_iam_role.role.arn]

tags = merge(
local.base_tags,
var.tags,
{ Name = local.role_name },
{ Name = var.role_name },
)
}

Expand Down

0 comments on commit d566ebd

Please sign in to comment.