-
Notifications
You must be signed in to change notification settings - Fork 687
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2007 from oracle/release_gh
Releasing version 5.23.0
- Loading branch information
Showing
891 changed files
with
21,962 additions
and
1,731 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
examples/database/adb/saas_admin_user/autonomous_database_saas_admin_user.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved. | ||
// Licensed under the Mozilla Public License v2.0 | ||
|
||
variable "tenancy_ocid" { | ||
} | ||
|
||
variable "user_ocid" { | ||
} | ||
|
||
variable "fingerprint" { | ||
} | ||
|
||
variable "private_key_path" { | ||
} | ||
|
||
variable "region" { | ||
} | ||
|
||
variable "compartment_ocid" { | ||
} | ||
|
||
provider "oci" { | ||
tenancy_ocid = var.tenancy_ocid | ||
user_ocid = var.user_ocid | ||
fingerprint = var.fingerprint | ||
private_key_path = var.private_key_path | ||
region = var.region | ||
} | ||
|
||
resource "oci_database_autonomous_database" "test_autonomous_database" { | ||
admin_password = "BEstrO0ng_#11" | ||
compartment_id = var.compartment_ocid | ||
cpu_core_count = "1" | ||
data_storage_size_in_tbs = "1" | ||
db_name = "Xsk5djnfdl23423" | ||
db_version = "19c" | ||
db_workload = "AJD" | ||
license_model = "LICENSE_INCLUDED" | ||
} | ||
|
||
resource "oci_database_autonomous_database_saas_admin_user" "test_saas_admin_user" { | ||
autonomous_database_id = oci_database_autonomous_database.test_autonomous_database.id | ||
password = "gyu*#YG762dhA" | ||
duration = 2 | ||
access_type = "READ_WRITE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
variable "tenancy_ocid" { | ||
} | ||
|
||
variable "user_ocid" { | ||
} | ||
|
||
variable "fingerprint" { | ||
} | ||
|
||
variable "private_key_path" { | ||
} | ||
|
||
variable "compartment_ocid" { | ||
} | ||
|
||
variable "compartment_id" { | ||
} | ||
|
||
variable "region" { | ||
} | ||
|
||
variable "connection_password" { | ||
} | ||
|
||
variable "metastore_default_external_table_location" { | ||
} | ||
|
||
variable "metastore_default_managed_table_location" { | ||
} | ||
|
||
variable "dataAsset_type_key" { | ||
|
||
} | ||
|
||
variable "connection_type_key" { | ||
|
||
} |
Oops, something went wrong.