Я пытаюсь получить цикл по строковым значениям в блоке ресурсов политики IAM, чтобы разрешить аутентификацию IAM rds. Мое определение ресурса:
resource "aws_iam_policy" "rds_iam_authentication"{
name = "${title(var.environment)}RdsIamAuthentication"
policy = templatefile(
"${path.module}/iam_policy.json",
{
aws_account_id = data.aws_caller_identity.current.account_id
region = var.region
environment = var.environment
iam_rds_pg_role_name = var.iam_rds_pg_role_name
}
)
}
Определение переменной iam_rds_pg_role_name
in terraform.tfvars
выглядит следующим образом:
region = "eu-west-3"
environment = "env_name"
iam_rds_pg_role_name = ["read_only_role", "full_role"]
aws_account_id = "1234567890"
А файл шаблона политики IAM выглядит так:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"rds-db:connect"
],
"Resource": [
%{ for rds_role in iam_rds_pg_role_name ~}
"arn:aws:rds-db:${region}:${aws_account_id}:dbuser:*/${rds_role}"
%{ endfor ~}
]
}
]
}
Я получаю сообщение об ошибке
Ошибка: «policy» содержит недопустимый JSON: недопустимый символ '"' после элемента массива
Я почти уверен, что проблема связана с кодировкой JSON, однако при попытке jsonencode
определения ARN в JSON, как показано ниже, ошибка все еще присутствует:
%{ for rds_role in iam_rds_pg_role_name ~}
jsonencode("arn:aws:rds-db:${region}:${aws_account_id}:dbuser:*/${rds_role}")}
%{ endfor ~}
Буду признателен, если кто-то объяснит, чего я не понимаю, или укажет мне правильное направление.
заранее спасибо
решение1
В вашем файле шаблона политики IAM отсутствует конечная запятая для элементов Resource
:
...
"Resource": [
%{ for rds_role in iam_rds_pg_role_name ~}
"arn:aws:rds-db:${region}:${aws_account_id}:dbuser:*/${rds_role}",
there should be a comma here ^
%{ endfor ~}
]
...
Вы можете выполнить цикл по индексу и элементу в iam_rds_pg_role_name
и добавить запятую, если индекс меньше length(iam_rds_pg_role_name) - 1
:
...
"Resource": [
%{ for index, rds_role in iam_rds_pg_role_name ~}
"arn:aws:rds-db:${region}:${aws_account_id}:dbuser:*/${rds_role}"%{ if idx < length(iam_rds_pg_role_name) - 1 },%{ endif }
%{ endfor ~}
]
...
Результат:
Terraform will perform the following actions:
# aws_iam_policy.rds_iam_authentication will be created
+ resource "aws_iam_policy" "rds_iam_authentication" {
+ arn = (known after apply)
+ id = (known after apply)
+ name = "Env_nameRdsIamAuthentication"
+ name_prefix = (known after apply)
+ path = "/"
+ policy = jsonencode(
{
+ Statement = [
+ {
+ Action = [
+ "rds-db:connect",
]
+ Effect = "Allow"
+ Resource = [
+ "arn:aws:rds-db:eu-west-3:1234567890:dbuser:*/read_only_role",
+ "arn:aws:rds-db:eu-west-3:1234567890:dbuser:*/full_role",
]
},
]
+ Version = "2012-10-17"
}
)
+ policy_id = (known after apply)
+ tags_all = (known after apply)
}