Skip to content

Instantly share code, notes, and snippets.

@Mirch
Created January 25, 2022 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mirch/16083e3d7361ef413f738e47779ec189 to your computer and use it in GitHub Desktop.
Save Mirch/16083e3d7361ef413f738e47779ec189 to your computer and use it in GitHub Desktop.
resource "aws_apigatewayv2_api" "users_api" {
name = "API"
description = "Users API"
protocol_type = "HTTP"
}
resource "aws_apigatewayv2_stage" "api_stage" {
api_id = aws_apigatewayv2_api.users_api.id
name = "$default"
auto_deploy = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment