Skip to content

Commit 5736d12

Browse files
authored
docs: fix typos using codespell (#1114)
1 parent 253d3bf commit 5736d12

File tree

76 files changed

+111
-111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+111
-111
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0
531531
### 🐛 Bug Fixes
532532

533533
<details>
534-
<summary>Karpenter bugfix, EKS add-ons to mangaed node group @Nuru (#816)</summary>
534+
<summary>Karpenter bugfix, EKS add-ons to managed node group @Nuru (#816)</summary>
535535

536536
### what
537537

@@ -553,7 +553,7 @@ Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0
553553

554554
### what
555555

556-
- Upsteam the latest `ecs-service` component
556+
- Upstream the latest `ecs-service` component
557557

558558
### why
559559

@@ -820,7 +820,7 @@ Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0
820820

821821
### why
822822

823-
- to help future implementors of CloudPosse's architectures
823+
- to help future implementers of CloudPosse's architectures
824824

825825
### references
826826

@@ -841,7 +841,7 @@ Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0
841841

842842
- fix incorrect shape for one of the items in `aws_team_roles_rbac`
843843
- improve consistency
844-
- remove variables that are not appliable for the component
844+
- remove variables that are not applicable for the component
845845

846846
### references
847847

@@ -3840,7 +3840,7 @@ N/A
38403840
### what
38413841
38423842
- bumped ecr
3843-
- remove unnecssary variable
3843+
- remove unnecessary variable
38443844
38453845
### why
38463846
@@ -4627,7 +4627,7 @@ NOTE: I don't know if the default of `default` is valid or if it is `Default`. I
46274627
46284628
### what
46294629
4630-
- Bump Versin of EC2 Client VPN
4630+
- Bump Version of EC2 Client VPN
46314631
46324632
### why
46334633
@@ -4758,7 +4758,7 @@ This is an alternative way of deprovisioning - proactive one.
47584758
47594759
```
47604760
There is another way to configure Karpenter to deprovision nodes called Consolidation.
4761-
This mode is preferred for workloads such as microservices and is imcompatible with setting
4761+
This mode is preferred for workloads such as microservices and is incompatible with setting
47624762
up the ttlSecondsAfterEmpty . When set in consolidation mode Karpenter works to actively
47634763
reduce cluster cost by identifying when nodes can be removed as their workloads will run
47644764
on other nodes in the cluster and when nodes can be replaced with cheaper variants due

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ update:
127127
dry_run: no
128128
```
129129

130-
For the full documentation on how to use the Component Updater GitHub Action, please see the [Atmos Intergations](https://atmos.tools/integrations/github-actions/component-updater) documentation.
130+
For the full documentation on how to use the Component Updater GitHub Action, please see the [Atmos Integrations](https://atmos.tools/integrations/github-actions/component-updater) documentation.
131131

132132
## Using `pre-commit` Hooks
133133

README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ usage: |-
147147
dry_run: no
148148
```
149149
150-
For the full documentation on how to use the Component Updater GitHub Action, please see the [Atmos Intergations](https://atmos.tools/integrations/github-actions/component-updater) documentation.
150+
For the full documentation on how to use the Component Updater GitHub Action, please see the [Atmos Integrations](https://atmos.tools/integrations/github-actions/component-updater) documentation.
151151
152152
## Using `pre-commit` Hooks
153153

deprecated/aws/backing-services/rds-replica.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ variable "rds_replica_snapshot" {
4545
variable "rds_replica_multi_az" {
4646
type = string
4747
default = "false"
48-
description = "Run instaces in multiple az"
48+
description = "Run instances in multiple az"
4949
}
5050

5151
variable "rds_replica_storage_type" {

deprecated/aws/backing-services/rds.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ variable "rds_parameter_group_name" {
8181
variable "rds_multi_az" {
8282
type = string
8383
default = "false"
84-
description = "Run instaces in multiple az"
84+
description = "Run instances in multiple az"
8585
}
8686

8787
variable "rds_storage_type" {

deprecated/aws/grafana-backing-services/aurora-mysql.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ resource "random_string" "mysql_admin_password" {
8787
# "Read SSM parameter to get allowed CIDR blocks"
8888
data "aws_ssm_parameter" "allowed_cidr_blocks" {
8989
# The data source will throw an error if it cannot find the parameter,
90-
# so do not reference it unless it is neeeded.
90+
# so do not reference it unless it is needed.
9191
count = local.allowed_cidr_blocks_use_ssm ? 1 : 0
9292

9393
# name = substr(mysql_cluster_allowed_cidr_blocks, 0, 1) == "/" ? mysql_cluster_allowed_cidr_blocks : "/aws/service/global-infrastructure/version"
@@ -97,15 +97,15 @@ data "aws_ssm_parameter" "allowed_cidr_blocks" {
9797
# "Read SSM parameter to get allowed VPC ID"
9898
data "aws_ssm_parameter" "vpc_id" {
9999
# The data source will throw an error if it cannot find the parameter,
100-
# so do not reference it unless it is neeeded.
100+
# so do not reference it unless it is needed.
101101
count = local.vpc_id_use_ssm ? 1 : 0
102102
name = var.vpc_id
103103
}
104104

105105
# "Read SSM parameter to get allowed VPC subnet IDs"
106106
data "aws_ssm_parameter" "vpc_subnet_ids" {
107107
# The data source will throw an error if it cannot find the parameter,
108-
# so do not reference it unless it is neeeded.
108+
# so do not reference it unless it is needed.
109109
count = local.vpc_subnet_ids_use_ssm ? 1 : 0
110110
name = var.vpc_subnet_ids
111111
}

deprecated/aws/keycloak-backing-services/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ an authorized local service.
4343
To keep the database encrypted, this module will have to be extended:
4444
1 Create a KMS key for encrypting the database. Using the RDS default key
4545
is not advisable since the only practical advantage of the key comes from
46-
limiting access to it, and the default key will likey have relatively
46+
limiting access to it, and the default key will likely have relatively
4747
wide access.
4848
1. Create an IAM role for Keycloak that has access to the key. Nodes running
4949
`kiam-server` will need to be able to assume this role.

deprecated/aws/kops/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ variable "name" {
2121
variable "region" {
2222
type = string
2323
default = ""
24-
description = "AWS region for resources. Can be overriden by `resource_region` and `state_store_region`"
24+
description = "AWS region for resources. Can be overridden by `resource_region` and `state_store_region`"
2525
}
2626

2727
variable "state_store_region" {

deprecated/aws/sentry/aurora-postgres.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ variable "postgres_db_name" {
3030

3131
variable "aurora_postgres_engine_version" {
3232
type = string
33-
description = "Database Engine Version for Aurora PostgeSQL"
33+
description = "Database Engine Version for Aurora postgresql"
3434
default = "9.6.12"
3535
}
3636

3737
variable "aurora_postgres_cluster_family" {
3838
type = string
39-
description = "Database Engine Version for Aurora PostgeSQL"
39+
description = "Database Engine Version for Aurora postgresql"
4040
default = "9.6.12"
4141
}
4242

deprecated/aws/teleport/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ resource "aws_iam_role" "teleport" {
9191
data "aws_iam_policy_document" "teleport" {
9292
// Teleport can use LetsEncrypt to get TLS certificates. For this // it needs additional permissions which are not included here.
9393

94-
// Teleport can use SSM to publish "join tokens" and retreive the enterprise // license, but that is not fully documented, so permissions to access SSM // are not included at this time.
94+
// Teleport can use SSM to publish "join tokens" and retrieve the enterprise // license, but that is not fully documented, so permissions to access SSM // are not included at this time.
9595

9696
// S3 permissions are needed to save and replay SSH sessions
9797
statement {

0 commit comments

Comments
 (0)