我试图在post方法执行中使用step函数集成来部署API。
我所收到的错误是;
错误:创建API集成错误: BadRequestException: AWS用于集成必须包含路径或动作
集成如下;
resource "aws_api_gateway_integration" "approve_get_integration_POST" {
rest_api_id = aws_api_gateway_rest_api.ccc_api.id
resource_id = aws_api_gateway_resource.QuestionnaireResponseID.id
http_method = aws_api_gateway_method.approve_get_integration_POST.http_method
integration_http_method = "POST"
type = "AWS"
passthrough_behavior = "NEVER"
uri = "arn:aws:states:us-west-2:1431651122:StartExecution/ccc-step-function-POST"
request_templates = {
"application/json" = <<EOF
{
"Comment": "Test express state machine",
"StartAt": "Validate",
"States": {
"Validate": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"OutputPath": "$.Payload",
"Parameters": {
"Payload.$": "$",
"FunctionName": "arn:aws:lambda:us-west-2:65163961147:function:sb-ccc-validate-submission:$LATEST"
},
"Retry": [
{
"ErrorEquals": [
"Lambda.ServiceException",
"Lambda.AWSLambdaException",
"Lambda.SdkClientException"
],
"IntervalSeconds": 2,
"MaxAttempts": 6,
"BackoffRate": 2
}
],
"Next": "CheckForValidateError"
},
"CheckForValidateError": {
"Type": "Choice",
"Choices": [
{
"Not": {
"Variable": "$.statusCode",
"NumericEquals": 200
},
"Next": "ValidateFailError"
}
],
"Default": "Create"
},
"ValidateFailError": {
"Type": "Succeed"
},
EOF
}
}```
from what I have read that URI is correct and should be deploying ok.发布于 2021-11-16 09:51:23
对于AWS集成,URI应该是形式的
arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}https://stackoverflow.com/questions/69945951
复制相似问题