Created
March 18, 2019 20:58
-
-
Save rogerwelin/3b7e4a0666d27854ec2c87d301dd2fd3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| variable "region" { | |
| description = "specifies aws region" | |
| default = "us-east-1" | |
| } | |
| variable "artifact_bucket" { | |
| description = "the bucket for fetching the artifact" | |
| default = "12345-artifact-bucket" | |
| } | |
| variable "artifact_zip_name" { | |
| description = "name of the zip file" | |
| default = "faas.zip" | |
| } | |
| variable "faas_name" { | |
| description = "name of the binary" | |
| default = "faas" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment