Last active
August 10, 2020 18:34
-
-
Save stojce/29fe6d0949a2f5a2fa0fffc955b15ea6 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 "env" { | |
description = "Depolyment environment" | |
default = "dev" | |
} | |
variable "region" { | |
description = "AWS region" | |
default = "eu-west-1" | |
} | |
variable "env" { | |
description = "Depolyment environment" | |
default = "dev" | |
} | |
variable "repository_branch" { | |
description = "Repository branch to connect to" | |
default = "develop" | |
} | |
variable "repository_owner" { | |
description = "GitHub repository owner" | |
default = "stojce" | |
} | |
variable "repository_name" { | |
description = "GitHub repository name" | |
default = "static-web-example" | |
} | |
variable "static_web_bucket_name" { | |
description = "S3 Bucket to deploy to" | |
default = "static-web-example-bucket" | |
} | |
variable "artifacts_bucket_name" { | |
description = "S3 Bucket for storing artifacts" | |
default = "artifacts-bucket" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment