-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
73 lines (58 loc) · 1.21 KB
/
variables.tf
File metadata and controls
73 lines (58 loc) · 1.21 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
66
67
68
69
70
71
72
73
## Copyright (c) 2023, Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
terraform {
required_providers {
oci = {
source = "oracle/oci"
version = ">= 5.10.0"
}
}
required_version = "= 1.2.9"
}
variable "compartment_ocid" {}
#
variable vcn_id {
type = string
}
variable subnet_id {
type = string
}
variable vm_display_name {
type = string
default = "syncthing_instance"
}
variable ssh_public_key {
type = string
default = ""
}
variable ad {
type = string
default = ""
}
variable s3fs_credentials_file {
type = string
default = "/home/opc/.passwd-s3fs"
}
variable access_key_id {
type = string
default = ""
}
variable secret_access_key {
type = string
default = ""
}
variable "bucket_name" {
type = string
description = "The name of the OCI Object Storage bucket to mount."
default = ""
}
variable "region" {
type = string
description = "The OCI region where the bucket is located."
default = ""
}
variable "namespace" {
type = string
description = "The Object Storage namespace."
default = ""
}