forked from oracle-quickstart/oci-oracle-data-integrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
executable file
·142 lines (110 loc) · 2.66 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
* Copyright (c) 2019, 2020, Oracle and/or its affiliates.
*/
// General settings
variable "tenancy_ocid" {
description = "Tenancy OCID"
}
variable "compartment_ocid" {
description = "Compartment OCID"
}
variable "region" {
description = "Region Name"
}
variable "service_name" {
description = "Service Name"
}
variable "quick_create" {
description = "ODI instance should be created in a new network or an existing network. Options : New networking components will be created, Existing networking components will be used"
default = ""
}
variable "use_marketplace_image" {
default = true
}
variable "mp_listing_id" {
default = "ocid1.appcataloglisting.oc1..aaaaaaaat7fdtoicx5x34ofrcckfoimlrjb4tly5pgm3qfoyqssp2qnvsl6q"
}
variable "mp_listing_resource_version" {
default = "ODI_Marketplace_V12.2.1.4.200618"
}
variable "mp_listing_resource_id" {
default = "ocid1.image.oc1.phx.aaaaaaaa2bbb5smufjxx5xuwjo4txzb62ccsq5aqmilxoc7b7ttjjh7efm2a"
}
variable "instance_shape" {
default = "VM.Standard2.4"
}
variable "instance_availability_domain" {
description = "Availability Domain"
}
variable "ssh_public_key" {
description = "SSH public key"
}
variable "vcn_cidr" {
default = "10.1.0.0/16"
}
variable "create_public_subnet" {
description = "Should instance be created in public or private domain"
default = true
}
variable "odi_vnc_password" {
description = "ODI vnc password"
}
variable "subnet" {
description = "Network subnet"
}
variable "subnetCompartment" {
description = "Network subnet compartment"
}
variable "vcn" {
description = "Virtual Cloud Network"
}
variable "vcnCompartment" {
description = "Virtual Cloud Network Compartment"
}
variable "assign_public_ip" {
default = false
description = "Should public IP be assigned"
}
variable "odi_repo" {
description = "Should existing ODI repo be used or a create new one"
}
variable "adw_instance" {
description = "ADW instance ID"
default = ""
}
variable "adw_password" {
description = "ADW password"
default = ""
}
variable "odi_password" {
description = "ODI password"
default = ""
}
variable "odi_schema_prefix" {
description = "ADW schema prefix"
default = ""
}
variable "odi_schema_password" {
description = "ADW schema password"
default = ""
}
variable "new_adw_instance" {
description = "ADW instance ID"
default = ""
}
variable "new_adw_password" {
description = "ADW password"
default = ""
}
variable "new_odi_password" {
description = "ODI password"
default = ""
}
variable "new_odi_schema_prefix" {
description = "ADW schema prefix"
default = ""
}
variable "new_odi_schema_password" {
description = "ADW schema password"
default = ""
}