gpt4 book ai didi

amazon-web-services - CloudFormation Lambda 模板,使用 Ref 或 GetAtt 时期望角色为字符串

转载 作者:行者123 更新时间:2023-12-03 07:12:06 26 4
gpt4 key购买 nike

创建 lambda 堆栈时,我使用名为 LambdaExecutionRole 的角色,然后通过 fn::GetAtt 引用 ARN

"Role": {"Fn::GetAtt": ["LambdaExecutionRole","Arn"]},

,就像文档所说的那样,然后我收到错误消息,指出指定的资源不支持 GetAtt。所以我尝试使用 GetAtt,然后返回:

资源 GetECLambda 的属性验证失败,并显示消息:#/Code/S3Bucket:关键字 [pattern] #/Role 的验证约束失败:预期类型:String,找到:JSONObject

我还尝试了 "Role":{ "!Ref": "LambdaExecutionRole"},

根据我的理解,其中一个应该返回一个字符串,因此将提供一个字符串,而不是一个 JSON 对象。但问题可能是字符串的定义如下:{“The Arn”},但我不确定如何避免这种情况。

我的lambda的结构和角色如下:

{
"AWSTemplateFormatVersion" : "2010-09-09",
"Description" : "Stack to create the get-EC lambda",
"Resources" : {
"LambdaExecutionRole": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Version": "2012-10-17",
"Statement": [{ "Effect": "Allow", "Principal": {"Service": ["lambda.amazonaws.com"]}, "Action": ["sts:AssumeRole"] }]
},
"Path": "/",
"Policies": [{
"PolicyName": "root",
"PolicyDocument": {
"Version": "2012-10-17",
"Statement": [{ "Effect": "Allow", "Action": ["logs:*"], "Resource": "arn:aws:logs:*:*:*" }]
}
}]
}
},
"GetECLambda" : {
"Type" : "AWS::Lambda::Function",
"Properties" : {
"FunctionName": "get-ecs",
"Role":{ "!Ref" : "LambdaExecutionRole"},
"Runtime": "nodejs12.x",
"Code": {
"S3Bucket" : "arn:aws:s3:::flex-fit-lambda-functions-source",
"S3Key": "get-ecs.zip"
}
}
}
}
}

最佳答案

在 JSON 中指定 Cloudformation 模板时,仅支持这种调用内部函数的形式:

{ "Fn::GetAtt" : [ "logicalNameOfResource", "attributeName" ] }

!Ref 表单仅支持 YAML。因此,请尝试在模板中更改当前对此的调用:

"Role": { "Fn::GetAtt" : [ "LambdaExecutionRole", "Arn" ] }

关于amazon-web-services - CloudFormation Lambda 模板,使用 Ref 或 GetAtt 时期望角色为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68427080/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com