-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatasource.tf
21 lines (20 loc) · 936 Bytes
/
datasource.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ------------------------------------------------------------------------------
# Trivadis - Part of Accenture, Platform Factory - Data Platforms
# Saegereistrasse 29, 8152 Glattbrugg, Switzerland
# ------------------------------------------------------------------------------
# Name.......: datasource.tf
# Author.....: Stefan Oehrli (oes) stefan.oehrli@accenture.com
# Editor.....: Stefan Oehrli
# Date.......: 2023.04.19
# Revision...:
# Purpose....: Compute Instance for the terraform module tvdlab bastion.
# Notes......: --
# Reference..: --
# License....: Apache License Version 2.0, January 2004 as shown
# at http://www.apache.org/licenses/
# ------------------------------------------------------------------------------
# get compartment information
data "oci_identity_compartment" "compartment" {
id = var.compartment_id
}
# --- EOF ----------------------------------------------------------------------