Skip to content

Commit 6d20054

Browse files
authored
Merge pull request #84 from oracle-devrel/iopanait-develop21
updates on data_safe
2 parents e77c6ec + 1fe4d4a commit 6d20054

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cloud-foundation/modules/cloud-foundation-library/database/adw_data_safe/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# # Copyright © 2022, Oracle and/or its affiliates.
1+
# # Copyright © 2023, Oracle and/or its affiliates.
22
# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
resource "oci_database_autonomous_database" "adw" {

cloud-foundation/modules/cloud-foundation-library/database/adw_data_safe/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# # Copyright © 2022, Oracle and/or its affiliates.
1+
# # Copyright © 2023, Oracle and/or its affiliates.
22
# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
output "ADW_Service_Console_URL" {
5-
value = join(", ", [for x in oci_database_autonomous_database.adw : x.service_console_url])
5+
value = [for x in oci_database_autonomous_database.adw : x.service_console_url]
66
}
77

88
output "adw" {

cloud-foundation/modules/cloud-foundation-library/database/adw_data_safe/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# # Copyright © 2022, Oracle and/or its affiliates.
1+
# # Copyright © 2023, Oracle and/or its affiliates.
22
# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
variable "adw_params" {

0 commit comments

Comments
 (0)