Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenschneider committed Dec 11, 2024
1 parent 3158364 commit e7218ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/terraform/modules/iam-cert-manager/aws_iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ locals {
#trivy:ignore:AVD-AWS-0143
resource "aws_iam_user" "user" {
name = local.aws_name
path = "/system/k8s/${var.cluster_name}"
path = "/system/k8s/${var.cluster_name}/"
}

resource "aws_iam_access_key" "user" {
Expand Down
2 changes: 1 addition & 1 deletion contrib/terraform/modules/iam-external-dns/aws_iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ locals {

resource "aws_iam_user" "user" {
name = local.aws_name
path = "/system/k8s/${var.cluster_name}"
path = "/system/k8s/${var.cluster_name}/"
}

resource "aws_iam_access_key" "user" {
Expand Down

0 comments on commit e7218ed

Please sign in to comment.