-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
74 lines (61 loc) · 1.53 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
# Tenancy
variable "tenancy_ocid" {
description = "OCID of your tenancy"
type = string
}
# Region
variable "region" {
description = "Region to create the resources"
type = string
default = "us-ashburn-1"
}
# Compartment
variable "compartment_ocid" {
description = "OCID of the compartment to create the instance in"
type = string
}
# Networking
variable "vcn_ocid" {
description = "OCID of the VCN"
type = string
}
variable "subnet_ocid" {
description = "OCID of the subnet to use"
type = string
}
variable "availability_domain" {
type = string
description = "The availability domain of the instance"
}
# Instance details
variable "instance_shape" {
description = "Shape of the instance"
type = string
default = "VM.Standard2.1"
}
variable "instance_name" {
type = string
description = "Display name for compute instance"
default = "Grafana_Instance"
}
variable "image_ocid" {
description = "OCID of the image to use"
type = string
default = "ocid1.image.oc1.iad.aaaaaaaaxtzkhdlxbktlkhiausqz7qvqg7d5jqbrgy6empmrojtdktwfv7fq"
}
# SSH access
variable "ssh_public_key" {
description = "SSH public key for instance access"
type = string
}
# Dynamic Group Name
variable "dynamic_group_name" {
description = "The name of the dynamic group"
type = string
default = "Grafana_dg"
}
# Policy group name
variable "group_name" {
description = "The name of the group to for the policy"
type = string
}