forked from mlinxfeld/terraform-oci-atp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (33 loc) · 839 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
41
variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
variable "private_key_path" {}
variable "region" {}
variable "compartment_ocid" {}
variable "atp_password" {}
variable "FoggyKitchen_ATP_database_cpu_core_count" {
default = 1
}
variable "FoggyKitchen_ATP_database_data_storage_size_in_tbs" {
default = 1
}
variable "FoggyKitchen_ATP_database_db_name" {
default = "fkatpdb1"
}
variable "FoggyKitchen_ATP_database_defined_tags_value" {
default = "value"
}
variable "FoggyKitchen_ATP_database_display_name" {
default = "FoggyKitchenATP"
}
variable "FoggyKitchen_ATP_database_freeform_tags" {
default = {
"Owner" = "FoggyKitchen"
}
}
variable "FoggyKitchen_ATP_database_license_model" {
default = "LICENSE_INCLUDED"
}
variable "FoggyKitchen_ATP_database_db_version" {
default = "19c"
}