generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfss_variables.tf
62 lines (52 loc) · 1.64 KB
/
fss_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
# Copyright (c) 2023, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
variable "add_fss" {
type = bool
description = "Add file system storage to WebLogic Server instances"
default = false
}
variable "fss_availability_domain" {
type = string
description = "The name of the availability domain where the file system and mount target exists"
default = ""
}
variable "mount_path" {
type = string
description = "The path to mount file system storage on the WebLogic Server instances"
default = "/u01/shared"
}
variable "existing_fss_id" {
type = string
description = "The OCID of your existing file system"
default = ""
}
variable "fss_compartment_id" {
type = string
description = "The OCID of the compartment where the file system exists"
default = ""
}
variable "add_existing_fss" {
type = bool
description = "Use an existing file system"
default = false
}
variable "mount_target_id" {
type = string
description = "The OCID of the mount target for File Shared System"
default = ""
}
variable "mount_target_compartment_id" {
type = string
description = "The OCID of the compartment where the mount target exists"
default = ""
}
variable "add_existing_mount_target" {
type = bool
description = "Add existing mount target to instances"
default = false
}
variable "existing_mount_target_nsg_id" {
type = string
description = "The OCID of the pre-created NSG that should be attached to the mount target"
default = ""
}