-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
65 lines (53 loc) · 1.27 KB
/
variables.tf
File metadata and controls
65 lines (53 loc) · 1.27 KB
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
variable "tenancy_ocid" {
description = "The OCID of the tenancy"
type = string
}
variable "user_ocid" {
description = "The OCID of the user"
type = string
}
variable "private_key" {
description = "The private key for API signing"
type = string
sensitive = true
}
variable "fingerprint" {
description = "The fingerprint for the private key"
type = string
}
variable "region" {
description = "The region for OCI operations"
type = string
}
variable "compartment_id" {
description = "Compartment ID"
type = string
}
variable "vcn_cidr_blocks" {
description = "VCN CIDR Blocks"
type = list(string)
}
variable "vcn_display_name" {
description = "VCN Display Name"
type = string
}
variable "vcn_dns_label" {
description = "VCN DNS Label"
type = string
}
variable "oci_group_name" {
description = "OCI group name that will be allowed to manage VCN resources"
type = string
}
variable "subnet_cidr_block" {
description = "Subnet CIDR Block"
type = string
}
variable "image_ocid" {
description = "OCID of the image to be used for the Compute instance"
type = string
}
variable "ssh_public_keys" {
description = "SSH Public Keys"
type = string
}