атрибут «Значение» не поддерживается в соответствии с нижеследующим потоком ~
https://github.com/awslabs/serverless-application-model/issues/206
Сторонние поддерживаемые доступные атрибуты с первого взгляда здесь: https://theburningmonk.com/cloudformation-ref-and-getatt-cheatsheet/
После некоторых исследований я почувствовал, что нет другого способа получить значение ApiKey, кроме использования Custom Resource, вызывающего лямбда-функцию. Вот мой пример кода фыр.
#######################################################
##### Start of Custom functions #####
#######################################################
ValueFunc:
Type: AWS::Lambda::Function
Properties:
Code:
ZipFile: >
var response = require('cfn-response');
var AWS = require('aws-sdk');
exports.handler = function(event, context) {
var apiKeyID = event.ResourceProperties.ApiKeyID;
var apigateway = new AWS.APIGateway();
var params = {
apiKey: apiKeyID,
includeValue: true
};
apigateway.getApiKey(params, function(err, ApiKeyData) {
if (err) {
console.log(err, err.stack); // an error occurred
var responseData = { "mykey" : "error reading ApiKey" };
response.send(event, context, response.SUCCESS, responseData);
} else {
console.log(ApiKeyData.value); // successful response
var responseData = { "mykey" : ApiKeyData.value };
response.send(event, context, response.SUCCESS, responseData);
}
});
};
Handler: index.handler
Runtime: nodejs8.10
Timeout: 30
Role: !Sub "arn:aws:iam::${AWS::AccountId}:role/${LambdaExecutionRole}"
GetApiKeyValue:
Type: Custom::LambdaCallout
Properties:
ServiceToken: !GetAtt ValueFunc.Arn
ApiKeyID: !Ref ApiKey