Skip to content
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

update role name docs #2327

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/aws-create-role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ provider "aws" {
resource "aws_iam_role" "assumed_admin" {

# The role name
name = "AssumedAdmin"
name = "KubernetesAdmin"

# The default session time is 1 hour, this set it to 12 hours for convenience. It's less annoying, but less secure, feel free to remove or change!
max_session_duration = 43200

#
# Below is a permissive role not intended for long-term use.
#
# It grants all IAM users of the AWS account the ability to assume the role `AssumedAdmin` (or whatever name you gave it), which we created and give the `AdministratorAccess` policy.
# It grants all IAM users of the AWS account the ability to assume the role `KubernetesAdmin`, which we created and give the `AdministratorAccess` policy.
#
# The value `:root` grants assume to the whole account but you can replace it with your individual IAM ARN, or your role if appropriate.
#
Expand Down
Loading