How to generate and download API gateway SDKwith terraform? – Amazon Web Sevices
I want to generate an API Gateway SDK with terraform automatically. Unfortunately, I getting always an error. I am using following code to generate the SDK: data "aws_api_gateway_sdk" "example" { rest_api_id = aws_api_gateway_stage.example.rest_api_id stage_name = aws_api_gateway_stage.example.stage_name sdk_type = "javascript" }…