-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvariables.tf
105 lines (88 loc) · 2.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
variable "confluent_cloud_api_key" {
description = "Confluent Cloud API Key (also referred as Cloud API ID)"
type = string
}
variable "confluent_cloud_api_secret" {
description = "Confluent Cloud API Secret"
type = string
sensitive = true
}
variable "sg_package" {
description = "Stream Governance Package: Advanced or Essentials"
type = string
default = "ADVANCED"
}
variable "region" {
description = "AWS region"
type = string
default = "us-east-1"
}
variable "rds_instance_class" {
description = "Amazon RDS (Oracle) instance size"
type = string
default = "db.m5.large"
}
variable "rds_instance_identifier" {
description = "Amazon RDS (Oracle) instance identifier"
type = string
default = "demo-db-mod"
}
variable "rds_username" {
description = "Amazon RDS (Oracle) master username"
type = string
default = "admin"
}
variable "rds_password" {
description = "Amazon RDS (Oracle) database password. You can change it through command line"
type = string
default = "db-mod-c0nflu3nt!"
}
variable "rds_vpc_cidr" {
type = string
description = "VPC IPv4 CIDR"
default = "10.0.0.0/16"
}
variable "rds_subnet_1_cidr" {
type = string
description = "IPv4 CIDR for RDS Oracle subnet 1"
default = "10.0.1.0/24"
}
variable "rds_subnet_2_cidr" {
type = string
description = "IPv4 CIDR for RDS Oracle subnet 2"
default = "10.0.2.0/24"
}
variable "mongodbatlas_public_key" {
description = "The public API key for MongoDB Atlas"
type = string
}
variable "mongodbatlas_private_key" {
description = "The private API key for MongoDB Atlas"
type = string
}
# Atlas Organization ID
variable "mongodbatlas_org_id" {
type = string
description = "MongoDB Atlas Organization ID"
}
# Atlas Project Name
variable "mongodbatlas_project_name" {
type = string
description = "MongoDB Atlas Project Name"
default = "demo-database-mod"
}
variable "mongodbatlas_region" {
description = "MongoDB Atlas region https://www.mongodb.com/docs/atlas/reference/amazon-aws/#std-label-amazon-aws"
type = string
default = "US_EAST_1"
}
variable "mongodbatlas_database_username" {
description = "MongoDB Atlas database username. You can change it through command line"
type = string
default = "admin"
}
variable "mongodbatlas_database_password" {
description = "MongoDB Atlas database password. You can change it through command line"
type = string
default = "db-mod-c0nflu3nt!"
}