Skip to content

Commit bd3338f

Browse files
authored
Merge pull request #10 from def-/pr-admin
administrat -> administrator
2 parents 820a2ff + 8a9c0be commit bd3338f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The module has been tested with:
6666
| <a name="input_db_multi_az"></a> [db\_multi\_az](#input\_db\_multi\_az) | Enable multi-AZ deployment for RDS | `bool` | `false` | no |
6767
| <a name="input_enable_bucket_encryption"></a> [enable\_bucket\_encryption](#input\_enable\_bucket\_encryption) | Enable server-side encryption for the S3 bucket | `bool` | `true` | no |
6868
| <a name="input_enable_bucket_versioning"></a> [enable\_bucket\_versioning](#input\_enable\_bucket\_versioning) | Enable versioning for the S3 bucket | `bool` | `true` | no |
69-
| <a name="input_enable_cluster_creator_admin_permissions"></a> [enable\_cluster\_creator\_admin\_permissions](#input\_enable\_cluster\_creator\_admin\_permissions) | To add the current caller identity as an administrat | `bool` | `true` | no |
69+
| <a name="input_enable_cluster_creator_admin_permissions"></a> [enable\_cluster\_creator\_admin\_permissions](#input\_enable\_cluster\_creator\_admin\_permissions) | To add the current caller identity as an administrator | `bool` | `true` | no |
7070
| <a name="input_enable_monitoring"></a> [enable\_monitoring](#input\_enable\_monitoring) | Enable CloudWatch monitoring | `bool` | `true` | no |
7171
| <a name="input_environment"></a> [environment](#input\_environment) | Environment name (e.g., prod, staging, dev) | `string` | `"dev"` | no |
7272
| <a name="input_log_group_name_prefix"></a> [log\_group\_name\_prefix](#input\_log\_group\_name\_prefix) | Prefix for the CloudWatch log group name (will be combined with environment name) | `string` | `"materialize"` | no |

modules/eks/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module "eks" {
3535
}
3636

3737
# Cluster access entry
38-
# To add the current caller identity as an administrat
38+
# To add the current caller identity as an administrator
3939
enable_cluster_creator_admin_permissions = var.enable_cluster_creator_admin_permissions
4040

4141
tags = var.tags

modules/eks/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ variable "node_group_capacity_type" {
6868
}
6969

7070
variable "enable_cluster_creator_admin_permissions" {
71-
description = "To add the current caller identity as an administrat"
71+
description = "To add the current caller identity as an administrator"
7272
type = bool
7373
default = true
7474
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ variable "cluster_enabled_log_types" {
115115
}
116116

117117
variable "enable_cluster_creator_admin_permissions" {
118-
description = "To add the current caller identity as an administrat"
118+
description = "To add the current caller identity as an administrator"
119119
type = bool
120120
default = true
121121
}

0 commit comments

Comments
 (0)