-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
76 lines (59 loc) · 1.25 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
variable "region" {
type = string
}
variable "user_ocid" {
type = string
}
variable "tenancy_ocid" {
type = string
}
variable "compartment_ocid" {
type = string
}
variable "availability_domain" {
type = string
}
variable "image_ocid" {
type = string
}
variable "vm_shape" {
type = string
}
variable "vm_memory" {
type = string
}
variable "vm_ocpus" {
type = string
}
variable "console_ssh_public_key" {
type = string
}
variable "ssh_private_key_path" {
type = string
}
variable "ssh_fingerprint" {
type = string
}
variable "ssh_authorized_keys" {
type = string
}
variable "boot_script" {
type = string
}
variable "mp_subscription_enabled" {
description = "Subscribe to Marketplace listing?"
type = bool
default = false
}
variable "mp_listing_id" {
default = "ocid1.appcataloglisting.oc1..aaaaaaaa52miob5xfolxu32kuxb2jgmdvtdovkisqvr22uozlr2b5cjwjm7a"
description = "Marketplace Listing OCID"
}
variable "mp_listing_resource_id" {
default = "ocid1.image.oc1..aaaaaaaayjatgvecms7kciqjx5exbj4dpcs3ympvpggpodwlfuezn7dejdja"
description = "Marketplace Listing Image OCID"
}
variable "mp_listing_resource_version" {
default = "13.1"
description = "Marketplace Listing Package/Resource Version"
}