We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9353a0d commit 9181fb0Copy full SHA for 9181fb0
iam-ssm.tf
@@ -39,7 +39,7 @@ data "aws_iam_policy_document" "truefoundry_assume_role_all" {
39
40
resource "aws_iam_policy" "truefoundry_assume_role_all" {
41
count = var.truefoundry_iam_role_enabled ? 1 : 0
42
- name_prefix = "truefoundry-allow-assume-role-all"
+ name_prefix = "${local.svcfoundry_unique_name}-truefoundry-allow-assume-role-all"
43
description = "Allow access to assume role for ${local.svcfoundry_unique_name} and ${local.mlfoundry_unique_name} in ${var.cluster_name}"
44
policy = data.aws_iam_policy_document.truefoundry_assume_role_all.json
45
tags = local.tags
0 commit comments