Skip to content

Commit ce26d62

Browse files
committed
Correct some typos
1 parent 1472348 commit ce26d62

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

security/security-design/fn-datasafe-dbaudit-to-oci-logging/terraform/function/oci-datasafe-audit-to-logging/func.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def main(ctx):
324324
rps = init_rps_client()
325325
logger.debug("RPS client obtain with Instance Principal.")
326326
# Step 2: Initializing ObjectStorage/Bucket Client.
327-
logger.debug("initializing ObjectStorage/Bucket client.")
327+
logger.debug("Initializing ObjectStorage/Bucket client.")
328328
os_client = init_objectstorage_client(rps)
329329
logger.debug("ObjectStorage/Bucket client obtained with Instance Principal.")
330330
# Step 3: Check file lock in ObjectStorage/Bucket.
@@ -350,7 +350,7 @@ def main(ctx):
350350
logger.debug("Content from file cursor lasteventexecutiontime: " + lastexecutionupdatime + ".")
351351
logger.debug("Content from file cursor done.")
352352
# Step 7: Initializing DataSafe Client.
353-
logger.debug("initializing DataSafe client.")
353+
logger.debug("Initializing DataSafe client.")
354354
data_safe_client = init_datasafe_client(rps)
355355
logger.debug("DataSafe client obtained with Instance Principal.")
356356
# Step 8: Generate SCIM query based on time window.
@@ -365,7 +365,7 @@ def main(ctx):
365365
lastdbauditeventcolletcted = ds_dbaudit_events[headerTimeCollected].iloc[0]
366366
logger.debug("Last DB Audit Time Events Collected from DataSafe: " + str(lastdbauditeventcolletcted) + ".")
367367
# Step 11: Initializing OCI Logging ingestion Client.
368-
logger.debug("initializing OCI Logging ingestion client.")
368+
logger.debug("Initializing OCI Logging ingestion client.")
369369
oci_logging_ingestion_client = init_logging_ingestion_client(rps)
370370
logger.debug("OCI Logging ingestion client obtained with Instance Principal.")
371371
#Step 12: Send DB Audit Events to OCI Logging.

security/security-design/fn-datasafe-dbaudit-to-oci-logging/terraform/modules/network/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ variable "compartment_ocid" {
2323
}
2424

2525
variable "vcn_cidr" {
26-
description = "The cidr block of VCN"
26+
description = "The CIDR block of VCN"
2727
}
2828

2929
variable "subnet_cidr" {
30-
description = "The cidr block of Subnet"
30+
description = "The CIDR block of Subnet"
3131
}
3232

3333
variable "vcndnslabelprefix" {
3434
}
3535

3636
variable "vcnnameprefix" {
37-
description = "The prefix display name of vcn"
37+
description = "The prefix display name of VCN"
3838
}
3939

4040
variable "vcnnameroutingtableprefix" {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ variable "create_network" {
7070
}
7171
variable "vcn_cidr" {
7272
default = "10.0.0.0/22"
73-
description = "The cidr block of VCN"
73+
description = "The CIDR block of VCN"
7474
}
7575

7676
variable "subnet_cidr" {

0 commit comments

Comments
 (0)