Skip to content

Commit 541ddf0

Browse files
committed
Copyright statement added to all TF-files
"Copyright (c) 2025 Oracle and/or its affiliates." Has been added add the beginning of every TF-file
1 parent 5fd90a2 commit 541ddf0

File tree

10 files changed

+10
-0
lines changed

10 files changed

+10
-0
lines changed

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/container/container_connection/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
resource "oci_database_external_container_database" "this" {
23
compartment_id = var.compartment_ocid
34
display_name = var.external_container_database_display_name

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/container/container_connection/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
#Common database system variables
23

34
variable "compartment_ocid" {

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/container/container_services/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
resource "oci_database_external_container_database_management" "this" {
23
count = var.enable_database_management_cdb == "enable" ? 1 : 0
34

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/container/container_services/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
variable "compartment_ocid" {
23
type = string
34
}

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/password_secret/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
data "oci_secrets_secretbundle" "password_secret" {
23
secret_id = var.password_secret_id
34
}

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/password_secret/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
variable "password_secret_id" {
23
description = "Optional OCI Vault Secret OCID for password instead of plain text"
34
type = string

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/pdb/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
resource "oci_database_external_pluggable_database" "that" {
23
compartment_id = var.compartment_ocid
34
display_name = var.external_pluggable_database_display_name

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/modules/pdb/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
#Common database system variables
23

34
variable "compartment_ocid" {

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/provider.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
terraform {
23
required_providers {
34
oci = {

manageability-and-operations/observability-and-manageability/external-database-enablement/root_module/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2025 Oracle and/or its affiliates.
12
variable "compartment_ocid" {
23
description = "Compartment OCID"
34
type = string

0 commit comments

Comments
 (0)