generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompartment.tf
20 lines (17 loc) · 931 Bytes
/
compartment.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ###################################################################################################### #
# 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. #
# ###################################################################################################### #
locals {
workload_compartment = {
name = "${var.workload_compartment_name}-${local.region_key[0]}-${var.mission_owner_key}"
description = "SCCA Workload Expansion"
}
}
module "workload_compartment" {
source = "./modules/compartment"
compartment_parent_id = var.home_compartment_id
compartment_name = local.workload_compartment.name
compartment_description = local.workload_compartment.description
enable_compartment_delete = var.enable_compartment_delete
}