Skip to content

Commit 92b7d8b

Browse files
authored
fix: Make cloudwatch_log_group_class type string (#38)
1 parent 6dbccf4 commit 92b7d8b

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ No modules.
172172
| <a name="input_broker_node_security_groups"></a> [broker\_node\_security\_groups](#input\_broker\_node\_security\_groups) | A list of the security groups to associate with the elastic network interfaces to control who can communicate with the cluster | `list(string)` | `[]` | no |
173173
| <a name="input_broker_node_storage_info"></a> [broker\_node\_storage\_info](#input\_broker\_node\_storage\_info) | A block that contains information about storage volumes attached to MSK broker nodes | `any` | `{}` | no |
174174
| <a name="input_client_authentication"></a> [client\_authentication](#input\_client\_authentication) | Configuration block for specifying a client authentication | `any` | `{}` | no |
175-
| <a name="input_cloudwatch_log_group_class"></a> [cloudwatch\_log\_group\_class](#input\_cloudwatch\_log\_group\_class) | Specifies the log class of the log group. Possible values are: STANDARD or INFREQUENT\_ACCESS. | `bool` | `null` | no |
175+
| <a name="input_cloudwatch_log_group_class"></a> [cloudwatch\_log\_group\_class](#input\_cloudwatch\_log\_group\_class) | Specifies the log class of the log group. Possible values are: STANDARD or INFREQUENT\_ACCESS. | `string` | `null` | no |
176176
| <a name="input_cloudwatch_log_group_kms_key_id"></a> [cloudwatch\_log\_group\_kms\_key\_id](#input\_cloudwatch\_log\_group\_kms\_key\_id) | The ARN of the KMS Key to use when encrypting log data | `string` | `null` | no |
177177
| <a name="input_cloudwatch_log_group_name"></a> [cloudwatch\_log\_group\_name](#input\_cloudwatch\_log\_group\_name) | Name of the Cloudwatch Log Group to deliver logs to | `string` | `null` | no |
178178
| <a name="input_cloudwatch_log_group_retention_in_days"></a> [cloudwatch\_log\_group\_retention\_in\_days](#input\_cloudwatch\_log\_group\_retention\_in\_days) | Specifies the number of days you want to retain log events in the log group | `number` | `0` | no |

examples/basic/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Note that this example may create resources which will incur monetary charges on
2323
| Name | Version |
2424
|------|---------|
2525
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
26-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.21 |
26+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.30 |
2727

2828
## Providers
2929

3030
| Name | Version |
3131
|------|---------|
32-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.21 |
32+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.30 |
3333

3434
## Modules
3535

examples/basic/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.21"
7+
version = ">= 5.30"
88
}
99
}
1010
}

examples/complete/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ Note that this example may create resources which will incur monetary charges on
2222
| Name | Version |
2323
|------|---------|
2424
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
25-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.21 |
25+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.30 |
2626
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2727

2828
## Providers
2929

3030
| Name | Version |
3131
|------|---------|
32-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.21 |
32+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.30 |
3333
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3434

3535
## Modules

examples/complete/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.21"
7+
version = ">= 5.30"
88
}
99
random = {
1010
source = "hashicorp/random"

examples/connect/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ Note that this example may create resources which will incur monetary charges on
2222
| Name | Version |
2323
|------|---------|
2424
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
25-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.21 |
25+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.30 |
2626
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.0 |
2727

2828
## Providers
2929

3030
| Name | Version |
3131
|------|---------|
32-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.21 |
32+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.30 |
3333
| <a name="provider_null"></a> [null](#provider\_null) | >= 3.0 |
3434

3535
## Modules

examples/connect/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.21"
7+
version = ">= 5.30"
88
}
99
null = {
1010
source = "hashicorp/null"

examples/serverless/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.21"
7+
version = ">= 5.30"
88
}
99
}
1010
}

modules/serverless/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.21"
7+
version = ">= 5.30"
88
}
99
}
1010
}

variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ variable "cloudwatch_logs_enabled" {
100100

101101
variable "cloudwatch_log_group_class" {
102102
description = "Specifies the log class of the log group. Possible values are: STANDARD or INFREQUENT_ACCESS."
103-
type = bool
103+
type = string
104104
default = null
105105
}
106106

0 commit comments

Comments
 (0)