From 26eea316efcd969b103d3f3bf9103262917601ea Mon Sep 17 00:00:00 2001 From: Leo Yongsul Kim Date: Tue, 13 Jun 2023 15:46:41 +0900 Subject: [PATCH] feat: Add compartment_id output (#16) #patch --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index 4fded25..5df3251 100644 --- a/outputs.tf +++ b/outputs.tf @@ -20,3 +20,8 @@ output "nodepool_ids" { description = "Map of Nodepool names and IDs" value = module.oke.nodepool_ids } + +output "compartment_id" { + description = "The OCID of the compartment that is using Oracle Cloud's Always Free services" + value = module.compartment.compartment_id +}