Skip to content

Commit f2c455a

Browse files
authored
Merge pull request #55 from oracle-devrel/develop3
fixes and added new solutions in the repo
2 parents 5b8c06a + 6004430 commit f2c455a

File tree

40 files changed

+2626
-18
lines changed

40 files changed

+2626
-18
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
variable "register_external_container_db" {
55
type = map(object({
6-
compartment_id = string
6+
compartment_id = string
77
external_container_display_name = string
88
}))
99
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# Copyright © 2022, 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.
3+
4+
output "monitoring_alarms" {
5+
description = "Monitoring informations."
6+
value = length(oci_monitoring_alarm.this) > 0 ? oci_monitoring_alarm.this[*] : null
7+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+
.terraform
5+
*tfstate*
6+
*.pem
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+
.terraform
5+
*tfstate*
6+
*.pem

cloud-foundation/solutions/GoldenGate-Stream-Analytics-for-production-workloads-Full-Solution/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ variable "analytics_instance_network_endpoint_details_whitelisted_ips" {
136136

137137
variable "bucket_name" {
138138
type = string
139-
default = "BucketOne"
139+
default = "BucketOneGGSAF"
140140
}
141141

142142
variable "bucket_access_type" {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+
.terraform
5+
*tfstate*
6+
*.pem
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+
.terraform
5+
*tfstate*
6+
*.pem

cloud-foundation/solutions/Hello-WebServer/locals.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
14
data "oci_identity_availability_domains" "ADs" {
25
compartment_id = var.tenancy_ocid
36
}

cloud-foundation/solutions/Hello-WebServer/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
14
#Project calls CIS Modules
25

36
#Creates :

cloud-foundation/solutions/Hello-WebServer/modules/provisioner/provisioner.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright © 2022, Oracle and/or its affiliates.
2+
# All rights reserved. Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
14
resource "null_resource" "remote-exec" {
25

36
provisioner "remote-exec" {

0 commit comments

Comments
 (0)