Skip to content

Commit

Permalink
updates on data_safe
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelpanaitescu committed Aug 2, 2023
1 parent 4f79b1e commit 1fe4d4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# # Copyright © 2022, Oracle and/or its affiliates.
# # Copyright © 2023, Oracle and/or its affiliates.
# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.

resource "oci_database_autonomous_database" "adw" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# # Copyright © 2022, Oracle and/or its affiliates.
# # Copyright © 2023, Oracle and/or its affiliates.
# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.

output "ADW_Service_Console_URL" {
value = join(", ", [for x in oci_database_autonomous_database.adw : x.service_console_url])
value = [for x in oci_database_autonomous_database.adw : x.service_console_url]
}

output "adw" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# # Copyright © 2022, Oracle and/or its affiliates.
# # Copyright © 2023, Oracle and/or its affiliates.
# # All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.

variable "adw_params" {
Expand Down

0 comments on commit 1fe4d4a

Please sign in to comment.