diff --git a/examples/cloudwatch-logs/variables.tf b/examples/cloudwatch-logs/variables.tf index 536f2d09..03375208 100644 --- a/examples/cloudwatch-logs/variables.tf +++ b/examples/cloudwatch-logs/variables.tf @@ -15,7 +15,7 @@ variable "custom_url" { } variable "private_key" { - description = "Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } @@ -85,7 +85,7 @@ variable "tags" { } variable "layer_arn" { - description = "In case you are using Secret Manager This is the ARN of the Coralogix Security Layer." + description = "In case you are using Secret Manager This is the ARN of the Coralogix Security lambda Layer." type = string default = "" } @@ -109,7 +109,7 @@ variable "custom_s3_bucket" { } variable "create_secret" { - description = "Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key" + description = "Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key" type = string default = "True" } \ No newline at end of file diff --git a/examples/kinesis/variables.tf b/examples/kinesis/variables.tf index 38fa77dd..a48d454c 100644 --- a/examples/kinesis/variables.tf +++ b/examples/kinesis/variables.tf @@ -15,7 +15,7 @@ variable "custom_url" { } variable "private_key" { - description = "Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } @@ -92,7 +92,7 @@ variable "custom_s3_bucket" { } variable "create_secret" { - description = "Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key" + description = "Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key" type = string default = "True" } \ No newline at end of file diff --git a/examples/resource-metadata/variables.tf b/examples/resource-metadata/variables.tf index c53b7826..4984f7c3 100644 --- a/examples/resource-metadata/variables.tf +++ b/examples/resource-metadata/variables.tf @@ -14,13 +14,13 @@ variable "custom_url" { } variable "private_key" { - description = "Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } variable "layer_arn" { - description = "In case you are using Secret Manager This is the ARN of the Coralogix Security Layer." + description = "In case you are using Secret Manager This is the ARN of the Coralogix Security lambda Layer." type = string default = "" } @@ -92,7 +92,7 @@ variable "custom_s3_bucket" { } variable "create_secret" { - description = "Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key" + description = "Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key" type = string default = "True" } \ No newline at end of file diff --git a/examples/s3/variables.tf b/examples/s3/variables.tf index 242a5a6d..8eaa6ddc 100644 --- a/examples/s3/variables.tf +++ b/examples/s3/variables.tf @@ -15,13 +15,13 @@ variable "custom_url" { } variable "private_key" { - description = "Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } variable "layer_arn" { - description = "In case you are using Secret Manager This is the ARN of the Coralogix Security Layer." + description = "In case you are using Secret Manager This is the ARN of the Coralogix Security lambda Layer." type = string default = "" } @@ -141,7 +141,7 @@ variable "custom_s3_bucket" { } variable "create_secret" { - description = "Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key" + description = "Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key" type = string default = "True" } \ No newline at end of file diff --git a/modules/cloudwatch-logs/README.md b/modules/cloudwatch-logs/README.md index b05e78e8..b99872fa 100644 --- a/modules/cloudwatch-logs/README.md +++ b/modules/cloudwatch-logs/README.md @@ -33,8 +33,8 @@ Manage the application which retrieves `CloudWatch` logs and sends them to your | [coralogix\_region](#input\_coralogix\_region) | The Coralogix location region, possible options are [`Europe`, `Europe2`, `India`, `Singapore`, `US`, `US2`] | `string` | `Europe` | yes | | [custom_url](#input\_custom\_domain) | Custom url for coralogix | `string` | n/a | no | | [layer_arn](#input\_layer\_arn) | In case you want to use Secret Manager This is the ARN of the Coralogix [lambda layer ](https://serverlessrepo.aws.amazon.com/applications/eu-central-1/597078901540/Coralogix-Lambda-SSMLayer). | `string` | n/a | no | -| [create_secret](#input\_create\_secret) | Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key| `string` | True | no | -| [private\_key](#input\_private\_key) | Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | +| [create_secret](#input\_create\_secret) | Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key| `string` | True | no | +| [private\_key](#input\_private\_key) | Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | | [application\_name](#input\_application\_name) | The name of your application | `string` | n/a | yes | | [subsystem\_name](#input\_subsystem\_name) | The subsystem name of your application | `string` | n/a | yes | | [newline\_pattern](#input\_newline\_pattern) | The pattern for lines splitting | `string` | `(?:\r\n\|\r\|\n)` | no | diff --git a/modules/cloudwatch-logs/variables.tf b/modules/cloudwatch-logs/variables.tf index 26d298c8..a353a281 100644 --- a/modules/cloudwatch-logs/variables.tf +++ b/modules/cloudwatch-logs/variables.tf @@ -15,7 +15,7 @@ variable "custom_url" { } variable "private_key" { - description = "The Coralogix Data API key which is used to validate your authenticity" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } diff --git a/modules/kinesis/README.md b/modules/kinesis/README.md index b0c92169..e734a9e0 100644 --- a/modules/kinesis/README.md +++ b/modules/kinesis/README.md @@ -32,8 +32,8 @@ Manage the application which retrieves logs from `S3` bucket and sends them to y | [coralogix\_region](#input\_coralogix\_region) | The Coralogix location region, possible options are [`Europe`, `Europe2`, `India`, `Singapore`, `US`, `US2`] | `string` | `Europe` | yes | | [custom_url](#input\_custom\_url) | Custom url for coralogix | `string` | n/a | no | | [layer_arn](#input\_layer\_arn) | In case you want to use Secret Manager This is the ARN of the Coralogix [lambda layer](https://serverlessrepo.aws.amazon.com/applications/eu-central-1/597078901540/Coralogix-Lambda-SSMLayer). | `string` | n/a | no | -| [create_secret](#input\_create\_secret) | Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key| `string` | True | no | -| [private\_key](#input\_private\_key) | Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | +| [create_secret](#input\_create\_secret) | Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key| `string` | True | no | +| [private\_key](#input\_private\_key) | Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | | [application\_name](#input\_application\_name) | The name of your application | `string` | n/a | yes | | [subsystem\_name](#input\_subsystem\_name) | The subsystem name of your application | `string` | n/a | yes | | [newline\_pattern](#input\_newline\_pattern) | The pattern for lines splitting | `string` | `(?:\r\n\|\r\|\n)` | no | diff --git a/modules/kinesis/variables.tf b/modules/kinesis/variables.tf index ac438bae..397d9e3b 100644 --- a/modules/kinesis/variables.tf +++ b/modules/kinesis/variables.tf @@ -15,7 +15,7 @@ variable "custom_url" { } variable "private_key" { - description = "The Coralogix Data API key which is used to validate your authenticity" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } diff --git a/modules/resource-metadata/README.md b/modules/resource-metadata/README.md index e932f05b..8dc253c2 100644 --- a/modules/resource-metadata/README.md +++ b/modules/resource-metadata/README.md @@ -32,8 +32,8 @@ Manage the application which retrieves `meta data` from your aws account and sen | [coralogix\_region](#input\_coralogix\_region) | The Coralogix location region, possible options are [`Europe`, `Europe2`, `India`, `Singapore`, `US`, `US2`, `Custom`] | `string` | n/a | yes | | [custom_url](#input\_custom\_domain) | Custom url for coralogix for example: https:///api/v1/logs| `string` | n/a | no | | [layer_arn](#input\_layer\_arn) | In case you want to use Secret Manager This is the ARN of the Coralogix [lambda layer](https://serverlessrepo.aws.amazon.com/applications/eu-central-1/597078901540/Coralogix-Lambda-SSMLayer). | `string` | n/a | no | -| [create_secret](#input\_create\_secret) | Set to False In case you want to use Secret Manager with your secret that contains coralogix Data API key| `string` | True | no | -| [private\_key](#input\_private\_key) | Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | +| [create_secret](#input\_create\_secret) | Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key| `string` | True | no | +| [private\_key](#input\_private\_key) | Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | | [schedule](#input\_schedule) | The rate to collacet metadata | `string` | `rate(10 minutes)` | no | | [latest_versions_per_function](#input\_latest\_versions\_per\_function) | How many latest published versions of each Lambda function should be collected | `number` | 5 | no | | [resource_ttl_minutes](#input\_resource\_ttl\_minutes) | Once a resource is collected, how long should it remain valid | `number` | 60 | no | diff --git a/modules/resource-metadata/variables.tf b/modules/resource-metadata/variables.tf index b91821ad..4984f7c3 100644 --- a/modules/resource-metadata/variables.tf +++ b/modules/resource-metadata/variables.tf @@ -14,7 +14,7 @@ variable "custom_url" { } variable "private_key" { - description = "The Coralogix private key which is used to validate your authenticity" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } diff --git a/modules/s3/README.md b/modules/s3/README.md index 01e57c2b..e969d679 100644 --- a/modules/s3/README.md +++ b/modules/s3/README.md @@ -34,8 +34,8 @@ Manage the application which retrieves logs from `S3` bucket and sends them to y | [integration_type](#input\_data\_type) | which service will send the data to the s3, possible options are [`cloudtrail`, `vpc-flow-log`, `s3`, `s3-sns`, `cloudtrail-sns`] | `string` | n/a | yes | | [sns_topic_name](#input\_sns\_topic\_name) | The SNS topic that will contain the SNS subscription, need only if you use the sns interations | `string` | | no | | [layer_arn](#input\_layer\_arn) | In case you want to use Secret Manager This is the ARN of the Coralogix [lambda layer](https://serverlessrepo.aws.amazon.com/applications/eu-central-1/597078901540/Coralogix-Lambda-SSMLayer). | `string` | n/a | no | -| [create_secret](#input\_create\_secret) | Set to False In case you want to use Secret Manager option with your secret that contains coralogix Data API key| `string` | True | no | -| [private\_key](#input\_private\_key) | Your Coralogix secret key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | +| [create_secret](#input\_create\_secret) | Set to False In case you want to use secrets manager with a predefine secret that was already created and contains Coralogix Send Your Data API key| `string` | True | no | +| [private\_key](#input\_private\_key) | Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key| `string` | n/a | yes | | [application\_name](#input\_application\_name) | The name of your application | `string` | n/a | yes | | [subsystem\_name](#input\_subsystem\_name) | The subsystem name of your application | `string` | n/a | yes | | [custom\_s3\_bucket](#input\_custom\_s3\_bucket) | The name of an existing s3 bucket in your region, in which the lambda zip code will be upload to. | `string` | n/a | no | diff --git a/modules/s3/variables.tf b/modules/s3/variables.tf index 1b473ee9..5c6b1c64 100644 --- a/modules/s3/variables.tf +++ b/modules/s3/variables.tf @@ -14,7 +14,7 @@ variable "custom_url" { } variable "private_key" { - description = "The Coralogix private key which is used to validate your authenticity" + description = "Your Coralogix data api key or incase you use your own created secret put here the name of your secret that contains the coralogix Data API key" type = string sensitive = true } diff --git a/tests/resource-metadata/resource-metadata.tf b/tests/resource-metadata/resource-metadata.tf index b46c726d..14b8f2b9 100644 --- a/tests/resource-metadata/resource-metadata.tf +++ b/tests/resource-metadata/resource-metadata.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = "~> 5.0" } } }