-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
36 lines (28 loc) · 982 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
variable "region" {
description = "The AWS region to use"
}
variable "shared_credentials_file" {
description = "The location of the AWS shared credentials file (e.g. ~dominic/.aws/credentials)"
}
variable "profile" {
description = "The AWS profile to use"
}
variable "bucket_name" {
description = "The name of the S3 bucket to create that will eventually host the Helm chart repository"
}
variable "repository_name" {
description = "The name of the Helm chart repository"
}
variable "log_bucket_id" {
description = "The ID of the S3 bucket to use for storing S3 access logs"
}
variable "is_versioning_enabled" {
description = "Enable versioning?"
default = true
}
variable "is_forcing_destroy" {
description = "Force the bucket to be emptied before deletion when running 'terraform destroy'?"
# Warning: USE AT YOUR OWN RISK!
# Set to 'true' if you want the bucket to be emptied before deletion when running 'terraform destroy'
default = false
}