-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
52 lines (45 loc) · 1.19 KB
/
variables.tf
File metadata and controls
52 lines (45 loc) · 1.19 KB
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
data "aws_secretsmanager_secret" "mysql_root" {
name = "dev/root/mysql"
}
data "aws_secretsmanager_secret_version" "mysql_root" {
secret_id = data.aws_secretsmanager_secret.mysql_root.id
}
data "aws_secretsmanager_secret" "mysql_user1" {
name = "dev/user1/mysql"
}
data "aws_secretsmanager_secret_version" "mysql_user1" {
secret_id = data.aws_secretsmanager_secret.mysql_user1.id
}
variable "source_account_id" {
description = "AWS account ID"
type = string
default = "204848234318"
}
#variable "mysql_root_pass" {
# description = "The password for the MySQL DB"
# type = string
# sensitive = true
#}
#variable "mysql_wp1_pass" {
# description = "The password for the MySQL DB of Wordpress 1"
# type = string
# sensitive = true
#}
#
#variable "mysql_wp2_pass" {
# description = "The password for the MySQL DB of Wordpress 2"
# type = string
# sensitive = true
#}
#
#variable "mysql_wp3_pass" {
# description = "The password for the MySQL DB of Wordpress 3"
# type = string
# sensitive = true
#}
#
#variable "mysql_wp4_pass" {
# description = "The password for the MySQL DB of Wordpress 4"
# type = string
# sensitive = true
#}