generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiam-variables.tf
38 lines (32 loc) · 1.21 KB
/
iam-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
# ###################################################################################################### #
# Copyright (c) 2023 Oracle and/or its affiliates, All rights reserved. #
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. #
# ###################################################################################################### #
variable "tenancy_ocid" {
type = string
description = "the OCID of tenancy"
}
variable "region" {
type = string
description = "Region the resources will be deployed in"
}
variable "mission_owner_workload_admin_group" {
type = string
description = "Name of the Mission Owner Workload Admin user group"
}
variable "idcs_endpoint" {
type = string
description = "URL endpoint of the existing identity domain"
}
variable "identity_domain_name" {
type = string
description = "Identity domain display name"
}
variable "master_encryption_key_ocid" {
type = string
description = "OCID of the master encryption key"
}
variable "vdms_compartment_name" {
type = string
description = "Full name of the VDMS compartment, including region key"
}