Skip to content

Instantly share code, notes, and snippets.

@stojce
Last active August 10, 2020 18:34
Show Gist options
  • Save stojce/29fe6d0949a2f5a2fa0fffc955b15ea6 to your computer and use it in GitHub Desktop.
Save stojce/29fe6d0949a2f5a2fa0fffc955b15ea6 to your computer and use it in GitHub Desktop.
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