Skip to content

Commit 523a9c9

Browse files
authored
Adding APM logging (#19)
* feat: Adding APM logging * fix: file headers
1 parent 968491b commit 523a9c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+337
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Learn how to [contribute][contributing].
3636

3737
## License
3838

39-
Copyright (c) 2019, 2021 Oracle and/or its associates.
39+
Copyright (c) 2021 Oracle and/or its associates.
4040

4141
Licensed under the [Universal Permissive License 1.0][license] as shown at
4242
[https://oss.oracle.com/licenses/upl][canonical_license].

examples/lb_log/main.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
terraform {
25
required_version = ">= 1.0.0"
36
required_providers {
47
oci = {
5-
source = "hashicorp/oci"
6-
version = ">=4.38.0"
8+
source = "oracle/oci"
9+
version = ">= 4.67.3"
710
}
811
}
912
}
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
compartment_id = ""
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
4+
compartment_id = "<compartment OCID>"
25
lbname = ""

examples/lb_log/variables.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
variable "compartment_id" {
25
type = string
36
description = "compartment id where to create the resources"

examples/objectstorage_log/main.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
terraform {
25
required_version = ">= 1.0.0"
36
required_providers {
47
oci = {
5-
source = "hashicorp/oci"
6-
version = ">=4.38.0"
8+
source = "oracle/oci"
9+
version = ">= 4.67.3"
710
}
811
}
912
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
bucket_name = "testbucket"
25
bucket_namespace = ""
36
compartment_id = ""

examples/objectstorage_log/variables.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
variable "compartment_id" {
25
type = string
36
description = "compartment id where to create the resources"

examples/vcnflow_log/main.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
terraform {
25
required_version = ">= 1.0.0"
36
required_providers {
47
oci = {
5-
source = "hashicorp/oci"
6-
version = ">=4.38.0"
8+
source = "oracle/oci"
9+
version = ">= 4.67.3"
710
}
811
}
912
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
compartment_id = ""

examples/vcnflow_log/variables.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#Copyright (c) 2021, 2023 Oracle Corporation and/or its affiliates.
2+
#Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3+
14
variable "compartment_id" {
25
type = string
36
description = "compartment id where to create the resources"

0 commit comments

Comments
 (0)