我正在使用CloudFormation模板来部署API网关资源,并且在部署(AWS::ApiGateway::Deployment)和UsagePlan资源方面遇到问题。这有点像鸡/鸡蛋的情况。

在UsagePlan中,我指定ApiStage的配置,这意味着我需要首先创建Deployment资源。但是,当我尝试删除堆栈时,UsagePlan失败,因为相应的阶段仍连接到UsagePlan。

我为UsagePlan有一个DependsOn语句(UsagePlan取决于部署)。这允许堆栈创建没有问题。但是由于有这个DependsOn语句,它会迫使UsagePlant首先在delete操作中删除。这会导致错误。

请参阅下面的相关代码摘录。

有人对此问题有解决方案吗?我不能成为第一个偶然发现它的人!

谢谢!

"UppRestApiDeployment": {
  "Type": "AWS::ApiGateway::Deployment",
  "Properties": {
    "Description": "Upp Rest API Deployment",
    "RestApiId": {
      "Ref": "UppRestApi"
    },
    "StageName": {
      "Ref": "StackIdentifier"
    },
    "StageDescription": {
      "CacheClusterEnabled": false,
      "CacheClusterSize": "0.5",
      "CacheDataEncrypted": false,
      "CacheTtlInSeconds": 10,
      "CachingEnabled": false,
      "DataTraceEnabled": false,
      "LoggingLevel": "ERROR",
      "MetricsEnabled": true,
      "StageName": {
        "Ref": "StackIdentifier"
      },
      "Description": {
        "Fn::Sub": "${StackIdentifier} Stage"
      },
      "ThrottlingBurstLimit": 2000,
      "ThrottlingRateLimit": 1000,
      "Variables": {
        "lambdaAlias": {
          "Ref": "StackIdentifier"
        }
      }
    }
  }
},
"UppApiUsagePlan": {
  "Type": "AWS::ApiGateway::UsagePlan",
  "Properties": {
    "ApiStages": [
      {
        "ApiId": {
          "Ref": "UppRestApi"
        },
        "Stage": {
          "Ref": "StackIdentifier"
        }
      }
    ],
    "Description": "Upp Rest API Usage Plan to Prevent Overage Charges",
    "Quota": {
      "Limit": 5000,
      "Period": "MONTH"
    },
    "Throttle": {
      "BurstLimit": 200,
      "RateLimit": 100
    },
    "UsagePlanName": {
        "Fn::Sub": "${StackIdentifier}_UppApiUsagePlan"
    }
  },
  "DependsOn": [
    "UppRestApiDeployment"
  ]
}

最佳答案

可以在多个API之间重复使用UsagePlan。因此,理想情况下,我们建议您为每个API使用不同的CloudFormation堆栈,并为UsagePlans使用不同的CloudFormation堆栈。这样,您可以删除API,而无需删除UsagePlan和没有陷入此依赖性问题。

关于aws-api-gateway - CloudFormation堆栈资源依赖关系问题:API网关部署+ UsagePlan,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42125380/

10-09 20:50