Skip to content

Commit 1df3612

Browse files
committed
Fix typos
1 parent 0d76f3a commit 1df3612

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ assignees: ''
77

88
---
99

10-
Have a question? Please checkout our [Slack Community](https://slack.cloudposse.com) or visit our [Slack Archive](https://archive.sweetops.com/).
10+
Have a question? Please check out our [Slack Community](https://slack.cloudposse.com) or visit our [Slack Archive](https://archive.sweetops.com/).
1111

1212
[![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com)
1313

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -343,12 +343,12 @@ Available targets:
343343
| <a name="input_accepter_subnet_tags"></a> [accepter\_subnet\_tags](#input\_accepter\_subnet\_tags) | Only add peer routes to accepter VPC route tables of subnets matching these tags | `map(string)` | `{}` | no |
344344
| <a name="input_accepter_vpc_id"></a> [accepter\_vpc\_id](#input\_accepter\_vpc\_id) | Accepter VPC ID filter | `string` | `""` | no |
345345
| <a name="input_accepter_vpc_tags"></a> [accepter\_vpc\_tags](#input\_accepter\_vpc\_tags) | Accepter VPC Tags filter | `map(string)` | `{}` | no |
346-
| <a name="input_add_attribute_tag"></a> [add\_attribute\_tag](#input\_add\_attribute\_tag) | If `true` will add additional attribute tag to the requester and accceptor resources | `bool` | `true` | no |
346+
| <a name="input_add_attribute_tag"></a> [add\_attribute\_tag](#input\_add\_attribute\_tag) | If `true` will add additional attribute tag to the requester and accepter resources | `bool` | `true` | no |
347347
| <a name="input_additional_tag_map"></a> [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.<br/>This is for some rare cases where resources want additional configuration of tags<br/>and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
348348
| <a name="input_attributes"></a> [attributes](#input\_attributes) | ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,<br/>in the order they appear in the list. New attributes are appended to the<br/>end of the list. The elements of the list are joined by the `delimiter`<br/>and treated as a single ID element. | `list(string)` | `[]` | no |
349349
| <a name="input_auto_accept"></a> [auto\_accept](#input\_auto\_accept) | Automatically accept the peering | `bool` | `true` | no |
350-
| <a name="input_aws_route_create_timeout"></a> [aws\_route\_create\_timeout](#input\_aws\_route\_create\_timeout) | Time to wait for AWS route creation specifed as a Go Duration, e.g. `2m` | `string` | `"5m"` | no |
351-
| <a name="input_aws_route_delete_timeout"></a> [aws\_route\_delete\_timeout](#input\_aws\_route\_delete\_timeout) | Time to wait for AWS route deletion specifed as a Go Duration, e.g. `5m` | `string` | `"5m"` | no |
350+
| <a name="input_aws_route_create_timeout"></a> [aws\_route\_create\_timeout](#input\_aws\_route\_create\_timeout) | Time to wait for AWS route creation specified as a Go Duration, e.g. `2m` | `string` | `"5m"` | no |
351+
| <a name="input_aws_route_delete_timeout"></a> [aws\_route\_delete\_timeout](#input\_aws\_route\_delete\_timeout) | Time to wait for AWS route deletion specified as a Go Duration, e.g. `5m` | `string` | `"5m"` | no |
352352
| <a name="input_context"></a> [context](#input\_context) | Single object for setting entire context at once.<br/>See description of individual variables for details.<br/>Leave string and numeric variables as `null` to use default value.<br/>Individual variable settings (non-null) override settings in context object,<br/>except for attributes, tags, and additional\_tag\_map, which are merged. | `any` | <pre>{<br/> "additional_tag_map": {},<br/> "attributes": [],<br/> "delimiter": null,<br/> "descriptor_formats": {},<br/> "enabled": true,<br/> "environment": null,<br/> "id_length_limit": null,<br/> "label_key_case": null,<br/> "label_order": [],<br/> "label_value_case": null,<br/> "labels_as_tags": [<br/> "unset"<br/> ],<br/> "name": null,<br/> "namespace": null,<br/> "regex_replace_chars": null,<br/> "stage": null,<br/> "tags": {},<br/> "tenant": null<br/>}</pre> | no |
353353
| <a name="input_delimiter"></a> [delimiter](#input\_delimiter) | Delimiter to be used between ID elements.<br/>Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
354354
| <a name="input_descriptor_formats"></a> [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.<br/>Map of maps. Keys are names of descriptors. Values are maps of the form<br/>`{<br/> format = string<br/> labels = list(string)<br/>}`<br/>(Type is `any` so the map values can later be enhanced to provide additional options.)<br/>`format` is a Terraform format string to be passed to the `format()` function.<br/>`labels` is a list of labels, in order, to pass to `format()` function.<br/>Label values will be normalized before being passed to `format()` so they will be<br/>identical to how they appear in `id`.<br/>Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |

accepter.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ data "aws_route_tables" "accepter" {
8383
}
8484
}
8585

86-
# If we had more subnets than routetables, we should update the default.
86+
# If we had more subnets than route tables, we should update the default.
8787
data "aws_route_tables" "default_rts" {
8888
count = local.count
8989
provider = aws.accepter

docs/terraform.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
| <a name="input_accepter_subnet_tags"></a> [accepter\_subnet\_tags](#input\_accepter\_subnet\_tags) | Only add peer routes to accepter VPC route tables of subnets matching these tags | `map(string)` | `{}` | no |
6161
| <a name="input_accepter_vpc_id"></a> [accepter\_vpc\_id](#input\_accepter\_vpc\_id) | Accepter VPC ID filter | `string` | `""` | no |
6262
| <a name="input_accepter_vpc_tags"></a> [accepter\_vpc\_tags](#input\_accepter\_vpc\_tags) | Accepter VPC Tags filter | `map(string)` | `{}` | no |
63-
| <a name="input_add_attribute_tag"></a> [add\_attribute\_tag](#input\_add\_attribute\_tag) | If `true` will add additional attribute tag to the requester and accceptor resources | `bool` | `true` | no |
63+
| <a name="input_add_attribute_tag"></a> [add\_attribute\_tag](#input\_add\_attribute\_tag) | If `true` will add additional attribute tag to the requester and accepter resources | `bool` | `true` | no |
6464
| <a name="input_additional_tag_map"></a> [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.<br/>This is for some rare cases where resources want additional configuration of tags<br/>and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
6565
| <a name="input_attributes"></a> [attributes](#input\_attributes) | ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,<br/>in the order they appear in the list. New attributes are appended to the<br/>end of the list. The elements of the list are joined by the `delimiter`<br/>and treated as a single ID element. | `list(string)` | `[]` | no |
6666
| <a name="input_auto_accept"></a> [auto\_accept](#input\_auto\_accept) | Automatically accept the peering | `bool` | `true` | no |
67-
| <a name="input_aws_route_create_timeout"></a> [aws\_route\_create\_timeout](#input\_aws\_route\_create\_timeout) | Time to wait for AWS route creation specifed as a Go Duration, e.g. `2m` | `string` | `"5m"` | no |
68-
| <a name="input_aws_route_delete_timeout"></a> [aws\_route\_delete\_timeout](#input\_aws\_route\_delete\_timeout) | Time to wait for AWS route deletion specifed as a Go Duration, e.g. `5m` | `string` | `"5m"` | no |
67+
| <a name="input_aws_route_create_timeout"></a> [aws\_route\_create\_timeout](#input\_aws\_route\_create\_timeout) | Time to wait for AWS route creation specified as a Go Duration, e.g. `2m` | `string` | `"5m"` | no |
68+
| <a name="input_aws_route_delete_timeout"></a> [aws\_route\_delete\_timeout](#input\_aws\_route\_delete\_timeout) | Time to wait for AWS route deletion specified as a Go Duration, e.g. `5m` | `string` | `"5m"` | no |
6969
| <a name="input_context"></a> [context](#input\_context) | Single object for setting entire context at once.<br/>See description of individual variables for details.<br/>Leave string and numeric variables as `null` to use default value.<br/>Individual variable settings (non-null) override settings in context object,<br/>except for attributes, tags, and additional\_tag\_map, which are merged. | `any` | <pre>{<br/> "additional_tag_map": {},<br/> "attributes": [],<br/> "delimiter": null,<br/> "descriptor_formats": {},<br/> "enabled": true,<br/> "environment": null,<br/> "id_length_limit": null,<br/> "label_key_case": null,<br/> "label_order": [],<br/> "label_value_case": null,<br/> "labels_as_tags": [<br/> "unset"<br/> ],<br/> "name": null,<br/> "namespace": null,<br/> "regex_replace_chars": null,<br/> "stage": null,<br/> "tags": {},<br/> "tenant": null<br/>}</pre> | no |
7070
| <a name="input_delimiter"></a> [delimiter](#input\_delimiter) | Delimiter to be used between ID elements.<br/>Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
7171
| <a name="input_descriptor_formats"></a> [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.<br/>Map of maps. Keys are names of descriptors. Values are maps of the form<br/>`{<br/> format = string<br/> labels = list(string)<br/>}`<br/>(Type is `any` so the map values can later be enhanced to provide additional options.)<br/>`format` is a Terraform format string to be passed to the `format()` function.<br/>`labels` is a list of labels, in order, to pass to `format()` function.<br/>Label values will be normalized before being passed to `format()` so they will be<br/>identical to how they appear in `id`.<br/>Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |

requester.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "requester_allow_remote_vpc_dns_resolution" {
5656
description = "Allow requester VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the accepter VPC"
5757
}
5858

59-
# Requestors's credentials
59+
# Requester's credentials
6060
provider "aws" {
6161
alias = "requester"
6262
region = var.requester_region

test/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ default: all
1414

1515
-include Makefile.*
1616

17-
## Provision the test-harnesss
17+
## Provision the test-harness
1818
.test-harness:
1919
[ -d $@ ] || git clone --depth=1 -b $(TEST_HARNESS_BRANCH) $(TEST_HARNESS) $@
2020

test/src/examples_complete_test.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func TestExamplesComplete(t *testing.T) {
3434
// This will run `terraform init` and `terraform apply` to create VPCs and subnets, required for the test
3535
terraform.InitAndApply(t, terraformVpcOnlyOptions)
3636
requesterVpcId := terraform.Output(t, terraformVpcOnlyOptions, "requester_vpc_id")
37-
acceptorVpcId := terraform.Output(t, terraformVpcOnlyOptions, "accepter_vpc_id")
37+
accepterVpcId := terraform.Output(t, terraformVpcOnlyOptions, "accepter_vpc_id")
3838

3939
terraformOptions := &terraform.Options{
4040
// The path to where our Terraform code is located
@@ -44,7 +44,7 @@ func TestExamplesComplete(t *testing.T) {
4444
VarFiles: []string{"fixtures.us-east-2.tfvars"},
4545
Vars: map[string]interface{}{
4646
"requester_vpc_id": requesterVpcId,
47-
"accepter_vpc_id": acceptorVpcId,
47+
"accepter_vpc_id": accepterVpcId,
4848
"attributes": attributes,
4949
},}
5050

@@ -61,14 +61,14 @@ func TestExamplesComplete(t *testing.T) {
6161
assert.Contains(t, requesterConnectionId, "pcx-")
6262

6363
// Run `terraform output` to get the value of an output variable
64-
acceptorConnectionId := terraform.Output(t, terraformOptions, "accepter_connection_id")
64+
accepterConnectionId := terraform.Output(t, terraformOptions, "accepter_connection_id")
6565
// Verify we're getting back the outputs we expect
66-
assert.Contains(t, acceptorConnectionId, "pcx-")
66+
assert.Contains(t, accepterConnectionId, "pcx-")
6767

6868
// Run `terraform output` to get the value of an output variable
69-
acceptorAcceptStatus := terraform.Output(t, terraformOptions, "accepter_accept_status")
69+
accepterAcceptStatus := terraform.Output(t, terraformOptions, "accepter_accept_status")
7070
// Verify we're getting back the outputs we expect
71-
assert.Equal(t, "active", acceptorAcceptStatus)
71+
assert.Equal(t, "active", accepterAcceptStatus)
7272

7373
// Run `terraform output` to get the value of an output variable
7474
requesterAcceptStatus := terraform.Output(t, terraformOptions, "requester_accept_status")

variables.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,17 @@ variable "skip_metadata_api_check" {
7878
variable "add_attribute_tag" {
7979
type = bool
8080
default = true
81-
description = "If `true` will add additional attribute tag to the requester and accceptor resources"
81+
description = "If `true` will add additional attribute tag to the requester and accepter resources"
8282
}
8383

8484
variable "aws_route_create_timeout" {
8585
type = string
8686
default = "5m"
87-
description = "Time to wait for AWS route creation specifed as a Go Duration, e.g. `2m`"
87+
description = "Time to wait for AWS route creation specified as a Go Duration, e.g. `2m`"
8888
}
8989

9090
variable "aws_route_delete_timeout" {
9191
type = string
9292
default = "5m"
93-
description = "Time to wait for AWS route deletion specifed as a Go Duration, e.g. `5m`"
93+
description = "Time to wait for AWS route deletion specified as a Go Duration, e.g. `5m`"
9494
}

0 commit comments

Comments
 (0)