Skip to content

Instantly share code, notes, and snippets.

View tomelliff's full-sized avatar

Tom Elliff-O'Shea tomelliff

View GitHub Profile
resource "aws_api_gateway_deployment" "instance" {
rest_api_id = "${var.rest_api_id}"
stage_name = "${var.stage_name}"
variables {
deployed_at = "${timestamp()}"
}
}