-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (50 loc) · 1.54 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
##################
# Global variables
##################
variable "aws_region" {
description = "The aws region that is being deployed into"
type = string
}
variable "aws_account_id" {
description = "The aws account id"
type = string
}
variable "business_unit" {
description = "The name of the business unit. Valid options are sk | pmc"
type = string
}
variable "environment" {
description = "The name of the environment that the resources belong to"
type = string
}
variable "state_bucket" {
description = "The name of the state bucket"
type = string
}
##################
# Site Specific variables
##################
variable "vip_s3_db_backup_bucket_arn" {
description = "Bucket arn of the vip db backups bucket"
type = string
default = ""
}
variable "vip_s3_http_logs_bucket_arn" {
description = "Bucket arn of the vip http logs backups bucket"
type = string
default = ""
}
variable "iam_user_identifier_s3_backup" {
description = "ARN of the Wordpress VIP IAM user to access the VIP backups bucket"
type = string
default = "arn:aws:iam::297161530160:user/WPVIPS3BackupShipper"
}
variable "iam_user_identifier_s3_http_logs" {
description = "ARN of the Wordpress VIP IAM user to access the http logs bucket"
type = string
default = "arn:aws:iam::297161530160:user/WPVIPS3LogShipper"
}
variable "wpvip-site-id" {
description = "The Site ID number generated by the wordpress VIP dashboard"
type = number
}