-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvars.tf
75 lines (58 loc) · 1.3 KB
/
vars.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
variable "projectName" {
default = "sonarqube"
}
variable "clusterName" {
default = "SonarQube"
}
variable "regionDefault" {
default = "<inserir-região-padrão>" # example: us-east-1
}
variable "engineRds" {
default = "postgres"
}
variable "engineRdsVersion" {
default = "13.10"
}
variable "rdsUser" {
description = "Inserir usuario do banco em secrets"
}
variable "rdsPass" {
description = "Inserir senha do banco em secrets"
}
variable "instanceClass" {
default = "db.t3.micro"
}
variable "storageType" {
default = "gp3"
}
variable "minStorage" {
default = "20"
}
variable "maxStorage" {
default = "30"
}
variable "subnet01" {
default = "<inserir-subnet-id-01>" # example: subnet-abcdef1
}
variable "subnet02" {
default = "<inserir-subnet-id-02>" # example: subnet-abcdef1
}
variable "subnet03" {
default = "<inserir-subnet-id-03>" # example: subnet-abcdef1
}
variable "vpcId" {
default = "<inserir-vpc-id>" # example: vpc-abcdef1
}
variable "vpcCIDR" {
default = "<inserir-vpc-CIDR>" # example: 10.10.0.0/16
}
variable "AWSAccount" {
default = "<inserir-id-aws-account>" # example: 123456789
}
variable "tags" {
type = map(string)
default = {
App = "sonarqube",
Ambiente = "Desenvolvimento"
}
}