forked from stojce/terraform-aws-codepipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (33 loc) · 855 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
variable "env" {
description = "Depolyment environment"
default = "dev"
}
variable "region" {
description = "AWS region"
default = "eu-west-1"
}
variable "repository_branch" {
description = "Repository branch to connect to"
default = "main"
}
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 = "static-web-example-artifacts"
}
variable "github_token" {
}
output "web_public_url" {
value = aws_s3_bucket.static_web_bucket.website_endpoint
}