Created
March 23, 2025 23:37
-
-
Save nivleshc/90c8e9086b46c551988a6c56b0605b8e to your computer and use it in GitHub Desktop.
This gist contains code from the file api_gateway.tf which is part of the blog-photo-location-map repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_api_gateway_deployment" "photo_location_map_deployment" { | |
rest_api_id = aws_api_gateway_rest_api.photo_location_map.id | |
lifecycle { | |
create_before_destroy = true | |
} | |
depends_on = [ | |
aws_api_gateway_integration.fetch_object, | |
aws_api_gateway_integration.upload_photo, | |
aws_api_gateway_integration.regenerate_map | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment