- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 RDS AWS 创建的密码部分,我试图传递 aws_secretsmanager_secret_version
值。我遇到了以下错误。
resource "aws_db_instance" "airflow" {
allocated_storage = "${var.rds_allocated_storage}"
storage_type = "${var.rds_storage_type}"
storage_encrypted = "true"
engine = "mysql"
engine_version = "${var.rds_engine_version}"
instance_class = "${var.rds_instance_class}"
name = "airflow"
identifier = "airflow"
username = "${var.rds_username}"
password = "${jsondecode(aws_secretsmanager_secret_version.secret.secret_string)["rds_password"]}"
parameter_group_name = "-airflow-mysql"
vpc_security_group_ids = ["${aws_security_group_airflow_sg.id}"]
db_subnet_group_name = "${aws_db_subnet_group.airflow_rds.id}"
kms_key_id = "${data.aws_kms_key.rds.arn}"
license_model = "general-public-license"
depends_on = [
aws_db_parameter_group.airflow_mysql
]
tags = merge(
var.common_tags,
map("Classification", "private"),
map("Name", "-airflow-rds")
)
}
secret 管理器.tf
resource "aws_secretsmanager_secret" "secret" {
description = "airflow"
kms_key_id = "${data.aws_kms_key.sm.arn}"
name = "airflow"
}
resource "random_string" "rds_password" {
length = 16
special = true
override_special = "/@\" "
}
resource "aws_secretsmanager_secret_version" "secret" {
secret_id = "${aws_secretsmanager_secret.secret.id}"
secret_string = <<EOF
{
"rds_password": "${random_string.rds_password.result}"
}
EOF
}
错误日志如下:-
错误:函数调用错误
在 ../../modules/airflow/outputs.tf 第 27 行,在输出“rds_password”中: 27:值=jsondecode(aws_secretsmanager_secret_version.secret.secret_string)[“rds_password”] |---------------- | aws_secretsmanager_secret_version.secret.secret_string 是 "{\n\"rds_password\":\"9Y\"@xu3jy@sNGXt/\"\n }\n"
调用函数“jsondecode”失败:对象后的无效字符“@”键值对。
错误:函数调用错误
在 ../../modules/airflow/rds.tf 第 12 行,在资源“aws_db_instance”“airflow”中: 12: password = "${jsondecode(aws_secretsmanager_secret_version.secret.secret_string)["rds_password"]}" |---------------- | aws_secretsmanager_secret_version.secret.secret_string 是 "{\n\"rds_password\":\"9Y\"@xu3jy@sNGXt/\"\n }\n"
调用函数“jsondecode”失败:对象后的无效字符“@”键值对。
最佳答案
我认为您没有正确地为 map 编制索引。问题在 secret_string)["rds_password"]
。
替换
password = "${jsondecode(aws_secretsmanager_secret_version.secret.secret_string)["rds_password"]}"
与
password = "${jsondecode(aws_secretsmanager_secret_version.secret.secret_string["rds_password"])}"
关于terraform - 尝试传递 aws_secretsmanager_secret_version 值时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57415154/
在 RDS AWS 创建的密码部分,我试图传递 aws_secretsmanager_secret_version 值。我遇到了以下错误。 resource "aws_db_instance" "ai
我是一名优秀的程序员,十分优秀!