-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
56 lines (45 loc) · 1.11 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
variable "compartment_name" {
description = "The name of the compartment."
type = string
}
variable "tenancy_ocid" {
description = "The OCID of the tenancy."
type = string
}
variable "user_ocid" {
description = "The OCID of the user."
type = string
}
variable "vm_image_ocid_ampere" {
description = "The OCID of the VM image to be deployed (ampere)."
type = string
}
variable "vm_name" {
description = "Name of the homelab virtual machine."
type = string
}
variable "region" {
description = "The name of the cloud region."
type = string
default = "us-ashburn-1"
}
variable "fingerprint" {
description = "The fingerprint of the private key."
type = string
}
variable "private_key_path" {
description = "The location of the private key."
type = string
}
variable "ssh_public_key" {
description = "The value of your SSH public key."
type = string
}
variable "tags" {
description = "Freeform tags."
type = map(any)
}
variable "compartment_ocid" {
description = "The OCID of compartment."
type = string
}