2016-08-12 5 views
0

Я пытаюсь создать конечную точку шлюза API с использованием terraform. Кажется, что все работает, за исключением последней части развертывания сцены.Terraform не развертывает этап api gateway

После того, как я запускаю terraform apply, я иду в консоль, и я обнаружил, что развертывания не произошло. Мне нужно вручную щелкнуть на Deploy Api, чтобы заставить его работать.

Вот файл терраформы для шлюза api.

variable "region" {} 
variable "account_id" {} 

resource "aws_api_gateway_rest_api" "online_tax_test_client_report_endpoint_api" { 
    name = "online_tax_test_client_report_endpoint_api" 
    description = "The endpoint that test has to hit when new client reports are available." 
    depends_on = ["aws_lambda_function.onlinetax_test_endpoint_lambda"] 
} 

resource "aws_api_gateway_resource" "test_client_report_resource" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    parent_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.root_resource_id}" 
    path_part = "test_client_report" 
} 

resource "aws_api_gateway_method" "test_client_report_method" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    resource_id = "${aws_api_gateway_resource.test_client_report_resource.id}" 
    http_method = "POST" 
    authorization = "NONE" 
} 

resource "aws_api_gateway_integration" "test_client_report_resource_integration" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    resource_id = "${aws_api_gateway_resource.test_client_report_resource.id}" 
    http_method = "${aws_api_gateway_method.test_client_report_method.http_method}" 
    type = "AWS" 
    integration_http_method = "${aws_api_gateway_method.test_client_report_method.http_method}" 
    uri = "arn:aws:apigateway:${var.region}:lambda:path/2015-03-31/functions/${aws_lambda_function.onlinetax_test_endpoint_lambda.arn}/invocations" 
    request_templates = { 
    "application/json" = "${file("${path.module}/generic_request_mapping_template.vm")}" 
    } 
} 

resource "aws_api_gateway_method_response" "200" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    resource_id = "${aws_api_gateway_resource.test_client_report_resource.id}" 
    http_method = "${aws_api_gateway_method.test_client_report_method.http_method}" 
    status_code = "200" 
} 

resource "aws_api_gateway_integration_response" "test_client_report_resource_integration_default_response" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    resource_id = "${aws_api_gateway_resource.test_client_report_resource.id}" 
    http_method = "${aws_api_gateway_method.test_client_report_method.http_method}" 
    status_code = "${aws_api_gateway_method_response.200.status_code}" 
    selection_pattern = "" 
    depends_on = ["aws_api_gateway_integration.test_client_report_resource_integration"] 
} 

resource "aws_api_gateway_method_response" "500" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    resource_id = "${aws_api_gateway_resource.test_client_report_resource.id}" 
    http_method = "${aws_api_gateway_method.test_client_report_method.http_method}" 
    status_code = "500" 
} 

resource "aws_api_gateway_integration_response" "test_client_report_resource_integration_error_response" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    resource_id = "${aws_api_gateway_resource.test_client_report_resource.id}" 
    http_method = "${aws_api_gateway_method.test_client_report_method.http_method}" 
    status_code = "${aws_api_gateway_method_response.500.status_code}" 
    selection_pattern = ".*?Error.*" 
    depends_on = ["aws_api_gateway_integration.test_client_report_resource_integration"] 
} 

resource "aws_lambda_permission" "allow_api_gateway" { 
    statement_id = "AllowExecutionFromAPIGateway" 
    action = "lambda:InvokeFunction" 
    function_name = "${aws_lambda_function.onlinetax_test_endpoint_lambda.arn}" 
    principal = "apigateway.amazonaws.com" 
    source_arn = "arn:aws:execute-api:${var.region}:${var.account_id}:${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}/*/${aws_api_gateway_integration.test_client_report_resource_integration.integration_http_method}${aws_api_gateway_resource.test_client_report_resource.path}" 
    depends_on = ["aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api"] 
} 

#This is the part that doesn't seem to work. 
resource "aws_api_gateway_deployment" "qa5" { 
    rest_api_id = "${aws_api_gateway_rest_api.online_tax_test_client_report_endpoint_api.id}" 
    stage_name = "qa5" 
    depends_on = ["aws_api_gateway_method.test_client_report_method"] 
} 

Редактировать

Добавлен график в:

digraph { 
     compound = "true" 
     newrank = "true" 
     subgraph "root" { 
      "[root] module.lambda.aws_api_gateway_deployment.qa5" [label = "aws_api_gateway_deployment.qa5", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" [label = "aws_api_gateway_integration.sbr_client_report_resource_integration", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" [label = "aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" [label = "aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" [label = "aws_api_gateway_method.sbr_client_report_method", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_method_response.200" [label = "aws_api_gateway_method_response.200", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_method_response.500" [label = "aws_api_gateway_method_response.500", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" [label = "aws_api_gateway_resource.sbr_client_report_resource", shape = "box"] 
      "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" [label = "aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api", shape = "box"] 
      "[root] module.lambda.aws_iam_role.onlinetax_sbr_endpoint_role" [label = "aws_iam_role.onlinetax_sbr_endpoint_role", shape = "box"] 
      "[root] module.lambda.aws_iam_role_policy.publish_to_sns_policy" [label = "aws_iam_role_policy.publish_to_sns_policy", shape = "box"] 
      "[root] module.lambda.aws_iam_role_policy.write_to_cloudwatch_policy" [label = "aws_iam_role_policy.write_to_cloudwatch_policy", shape = "box"] 
      "[root] module.lambda.aws_lambda_function.onlinetax_sbr_endpoint_lambda" [label = "aws_lambda_function.onlinetax_sbr_endpoint_lambda", shape = "box"] 
      "[root] module.lambda.aws_lambda_permission.allow_api_gateway" [label = "aws_lambda_permission.allow_api_gateway", shape = "box"] 
      "[root] module.lambda.provider.aws" [label = "provider.aws", shape = "diamond"] 
      "[root] module.sns.aws_sns_topic.online_tax_qa5_sbr_client_report" [label = "aws_sns_topic.online_tax_qa5_sbr_client_report", shape = "box"] 
      "[root] module.sns.provider.aws" [label = "provider.aws", shape = "diamond"] 
      "[root] provider.aws (disabled)" [label = "provider.aws (disabled)", shape = "diamond"] 
      "[root] module.lambda.aws_api_gateway_deployment.qa5" -> "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" 
      "[root] module.lambda.aws_api_gateway_deployment.qa5" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_deployment.qa5" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" -> "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" 
      "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" -> "[root] module.lambda.aws_lambda_function.onlinetax_sbr_endpoint_lambda" 
      "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" -> "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" -> "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" -> "[root] module.lambda.aws_api_gateway_method_response.200" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_default_response" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" -> "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" -> "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" -> "[root] module.lambda.aws_api_gateway_method_response.500" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_integration_response.sbr_client_report_resource_integration_error_response" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_method_response.200" -> "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" 
      "[root] module.lambda.aws_api_gateway_method_response.200" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_api_gateway_method_response.200" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_method_response.200" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_method_response.500" -> "[root] module.lambda.aws_api_gateway_method.sbr_client_report_method" 
      "[root] module.lambda.aws_api_gateway_method_response.500" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_api_gateway_method_response.500" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_method_response.500" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" -> "[root] module.lambda.aws_lambda_function.onlinetax_sbr_endpoint_lambda" 
      "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_iam_role.onlinetax_sbr_endpoint_role" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_iam_role_policy.publish_to_sns_policy" -> "[root] module.lambda.aws_iam_role.onlinetax_sbr_endpoint_role" 
      "[root] module.lambda.aws_iam_role_policy.publish_to_sns_policy" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_iam_role_policy.publish_to_sns_policy" -> "[root] module.sns.aws_sns_topic.online_tax_qa5_sbr_client_report" 
      "[root] module.lambda.aws_iam_role_policy.write_to_cloudwatch_policy" -> "[root] module.lambda.aws_iam_role.onlinetax_sbr_endpoint_role" 
      "[root] module.lambda.aws_iam_role_policy.write_to_cloudwatch_policy" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_lambda_function.onlinetax_sbr_endpoint_lambda" -> "[root] module.lambda.aws_iam_role.onlinetax_sbr_endpoint_role" 
      "[root] module.lambda.aws_lambda_function.onlinetax_sbr_endpoint_lambda" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.aws_lambda_permission.allow_api_gateway" -> "[root] module.lambda.aws_api_gateway_integration.sbr_client_report_resource_integration" 
      "[root] module.lambda.aws_lambda_permission.allow_api_gateway" -> "[root] module.lambda.aws_api_gateway_resource.sbr_client_report_resource" 
      "[root] module.lambda.aws_lambda_permission.allow_api_gateway" -> "[root] module.lambda.aws_api_gateway_rest_api.online_tax_sbr_client_report_endpoint_api" 
      "[root] module.lambda.aws_lambda_permission.allow_api_gateway" -> "[root] module.lambda.aws_lambda_function.onlinetax_sbr_endpoint_lambda" 
      "[root] module.lambda.aws_lambda_permission.allow_api_gateway" -> "[root] module.lambda.provider.aws" 
      "[root] module.lambda.provider.aws" -> "[root] provider.aws (disabled)" 
      "[root] module.sns.aws_sns_topic.online_tax_qa5_sbr_client_report" -> "[root] module.sns.provider.aws" 
      "[root] module.sns.provider.aws" -> "[root] provider.aws (disabled)" 
     } 
} 

график имеет другие ресурсы, которые я не предусмотренные в файле тф выше. Его единственный API GW, который имеет проблемы. Кстати, я могу протестировать API с консоли, и он отлично работает. Я не могу выполнить его из моего локального почтового ящика или почтальона.

Любая идея о том, что я делаю неправильно?

+0

В этом случае для первого развертывания или просто будущих развертываний, когда все изменится? Для GH есть открытая проблема для GH: https://github.com/hashicorp/terraform/issues/6613 – ydaetskcoR

+0

Даже первое развертывание не работает, я думаю. Я уничтожил весь стек и снова применил его. Все еще не видно развертывания. Когда в плане terraform перечислены все изменения, которые необходимо применить, ресурс развертывания указан в самом верху. Означает ли это, что сначала развертывается? – sethu

+0

Он абсолютно не запускается первым, потому что он зависит как минимум от двух ресурсов ('aws_api_gateway_rest_api' и' aws_api_gateway_method'), что, в свою очередь, может зависеть от других вещей. Я должен был бы запустить ваш TF, чтобы увидеть, но к сожалению, придется ждать до сегодняшнего вечера. Возможно, было бы интересно увидеть вывод «terraform graph», если бы вы могли отредактировать это в своем вопросе? – ydaetskcoR

ответ

3

TF не развернуть API, эта ссылка может помочь вам: https://medium.com/coryodaniel/til-forcing-terraform-to-deploy-a-aws-api-gateway-deployment-ed36a9f60c1a

Я неподвижную мину, добавив переменную deployed_at:

resource "aws_api_gateway_deployment" "api_ingest_deployment" { 
    depends_on = ["aws_api_gateway_method.xxx", 
       "aws_api_gateway_integration.yyy", 
       "aws_api_gateway_integration.zzz", 
       "aws_api_gateway_integration.www", 
    ] 
    rest_api_id = "${aws_api_gateway_rest_api.foo.id}" 
    stage_name = "${var.environment}" 

    variables { 
    deployed_at = "${timestamp()}" 
    } 
} 

недостатком является то, что если сделать это так, как это будет всегда развертывать, даже если нет изменений.

+3

На самом деле, я только что проверил и этот вопрос GitHub https://github.com/hashicorp/terraform/issues/6613 Действовать таким образом: ресурс «aws_api_gateway_deployment» «по умолчанию» { ... stage_description = " $ {md5 (файл ("api_gateway.tf"))} " ... } более умно и заставит вас развернуть меньше –