-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (33 loc) · 905 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
# Edit to your liking.
variable "ec2-image" {
description = "AMI used for EC2 instance"
type = string
}
variable "ec2-flavor" {
description = "EC2 instance type"
type = string
}
variable "s3-bucket-name" {
description = "S3 bucket name; globally unique"
type = string
}
variable "s3-block-public_acls" {
description = "Whether Amazon S3 should block public ACLs for this bucket"
type = bool
default = false
}
variable "s3-block-public_policy" {
description = "Whether Amazon S3 should block public bucket policies for this bucket"
type = bool
default = false
}
variable "s3-ignore-public_acls" {
description = "Whether Amazon S3 should ignore public ACLs for this bucket"
type = bool
default = false
}
variable "s3-restrict-public_buckets" {
description = "Whether Amazon S3 should restrict public bucket policies for this bucket"
type = bool
default = false
}