3

我在 CloudFormation 中有 lambda 支持的自定义堆栈,所以我需要 fetch 函数输出并将其放入 AWS 控制台,我该如何处理这个问题?

我的堆栈如下所示;

     "CreateExistingVPC": {
  "Type": "Custom::CreateExistingVPC",
  "Properties": {
    "ServiceToken": { "Fn::If": ["LambdaAvailable",{ "Fn::GetAtt": [ "CustomLogic", "Outputs.LambdaAttachHostedZoneArn" ] }, { "Ref": "AWS::NoValue" } ] },
    "Region": { "Ref": "AWS::Region" },
    "HostedZoneId": { "Ref": "InternalHostedZone" },
    "VpcId": { "Fn::GetAtt": [ "VPC", "Outputs.VPC" ] }
  }
}
},

  "Outputs": {
  "Route53VPC": {
  "Description": "ExistingRoute53VPCStatus",
  "Value": { "Fn::GetAtt": [ "CreateExistingVPC", "{ ??????? }" ] }
}
}

实际上,我找到了一些答案,但在我的情况下“响应键”不起作用,我如何找到响应键?

AWS Cloudformation,自定义资源的输出值

4

1 回答 1

2

您需要使用您正在使用的变量来返回您的响应。例如(nodeJs)

module.exports.createPoolList = (event, context, callback) => {

  if (event.RequestType == 'Create') {
    let array = event.ResourceProperties.OpsPoolArnList.split(",");

    array.push(event.ResourceProperties.UserPool);

    let response = {
        'list': array.join(),
    };

    sendresponse(event, "SUCCESS", response, "");
  }

  if (event.RequestType == 'Delete') {
      sendresponse(event, "SUCCESS", null, "");
  }

  callback(null, "");
};

list是包含我的输出和返回的变量response。构建的有效载荷看起来像

let payload = {
    'StackId': event.StackId,
    'Status' : responsestatus,
    'Reason' : reason,
    'RequestId': event.RequestId,
    'LogicalResourceId': event.LogicalResourceId,
    'PhysicalResourceId': event.LogicalResourceId + 'qwerty',
    'Data': response
};

我在我的脚本中将此称为

!GetAtt <ResourceName>.list

希望能帮助到你。

于 2019-03-12T11:17:26.917 回答