Skip to content

Commit 3210cb7

Browse files
authored
Merge branch 'main' into phantompete-patch-3
2 parents fc9a155 + 9d59740 commit 3210cb7

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

app-dev/devops-and-containers/oke/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Reviewed: 20.12.2023
5555
# Reusable Assets Overview
5656

5757
- [Cluster Api OCI](https://github.com/oracle-devrel/technology-engineering/tree/main/app-dev/oke/capoci)
58+
- [Cloud Native QuickStart](https://github.com/alcampag/oci-cn-quickstart)
5859

5960
# License
6061

security/security-design/shared-assets/fn-datasafe-dbaudit-to-oci-logging/files/terraform/function/oci-datasafe-audit-to-logging/func.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ schema_version: 20180708
22
name: oci-datasafe-audit-to-logging
33
version: 0.0.1
44
runtime: python
5+
build_image: fnproject/python:3.9-dev
6+
run_image: fnproject/python:3.9
57
entrypoint: /python/bin/fdk /function/func.py handler
68
memory: 1024
79
timeout: 300

security/security-design/shared-assets/fn-datasafe-dbaudit-to-oci-logging/files/terraform/function_prep.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "null_resource" "functionapp_push2ocir" {
3333
}
3434

3535
provisioner "local-exec" {
36-
command = "docker push ${local.fn_image}"
36+
command = "docker push ${local.fn_image}"
3737
working_dir = "${path.module}/${local.fn_working_dir}"
3838
}
3939

security/security-design/shared-assets/fn-datasafe-dbaudit-to-oci-logging/files/terraform/functions.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
resource "oci_functions_application" "functionapp" {
1313
compartment_id = var.compartment_ocid
1414
display_name = local.functionapp_display_name
15+
shape = var.functionappshape
1516
subnet_ids = [var.create_network ? module.setup-network[0].subnet_ocid : var.subnet_ocid]
1617
}
1718

security/security-design/shared-assets/fn-datasafe-dbaudit-to-oci-logging/files/terraform/variables.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ variable "functionname" {
160160
default = "oci-datasafe-audit-to-logging"
161161
}
162162

163+
variable "functionappshape" {
164+
default = "GENERIC_ARM"
165+
}
166+
163167

164168
###################################
165169
# Logging Variables

0 commit comments

Comments
 (0)