Skip to content

Commit baaa7f4

Browse files
swibrowSamuel wibrow
and
Samuel wibrow
authored
feat: Fixed typo in mutlicast to multicast, also in the variable name (#108)
Co-authored-by: Samuel wibrow <[email protected]>
1 parent f4db667 commit baaa7f4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ All notable changes to this project will be documented in this file.
2828

2929
### Features
3030

31-
* Added TGW mutlicast support ([#73](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/issues/73)) ([a4d569b](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/commit/a4d569b7f03443921d9dff7ce54f8acc06aed7fa))
31+
* Added TGW multicast support ([#73](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/issues/73)) ([a4d569b](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/commit/a4d569b7f03443921d9dff7ce54f8acc06aed7fa))
3232

3333
## [2.7.0](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/compare/v2.6.0...v2.7.0) (2022-03-26)
3434

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ No modules.
109109
| <a name="input_enable_default_route_table_association"></a> [enable\_default\_route\_table\_association](#input\_enable\_default\_route\_table\_association) | Whether resource attachments are automatically associated with the default association route table | `bool` | `true` | no |
110110
| <a name="input_enable_default_route_table_propagation"></a> [enable\_default\_route\_table\_propagation](#input\_enable\_default\_route\_table\_propagation) | Whether resource attachments automatically propagate routes to the default propagation route table | `bool` | `true` | no |
111111
| <a name="input_enable_dns_support"></a> [enable\_dns\_support](#input\_enable\_dns\_support) | Should be true to enable DNS support in the TGW | `bool` | `true` | no |
112-
| <a name="input_enable_mutlicast_support"></a> [enable\_mutlicast\_support](#input\_enable\_mutlicast\_support) | Whether multicast support is enabled | `bool` | `false` | no |
112+
| <a name="input_enable_multicast_support"></a> [enable\_multicast\_support](#input\_enable\_multicast\_support) | Whether multicast support is enabled | `bool` | `false` | no |
113113
| <a name="input_enable_vpn_ecmp_support"></a> [enable\_vpn\_ecmp\_support](#input\_enable\_vpn\_ecmp\_support) | Whether VPN Equal Cost Multipath Protocol support is enabled | `bool` | `true` | no |
114114
| <a name="input_name"></a> [name](#input\_name) | Name to be used on all the resources as identifier | `string` | `""` | no |
115115
| <a name="input_ram_allow_external_principals"></a> [ram\_allow\_external\_principals](#input\_ram\_allow\_external\_principals) | Indicates whether principals outside your organization can be associated with a resource share. | `bool` | `false` | no |

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module "tgw" {
3030
enable_auto_accept_shared_attachments = true
3131

3232
# When "true", allows service discovery through IGMP
33-
enable_mutlicast_support = false
33+
enable_multicast_support = false
3434

3535
vpc_attachments = {
3636
vpc1 = {

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ resource "aws_ec2_transit_gateway" "this" {
3232
default_route_table_association = var.enable_default_route_table_association ? "enable" : "disable"
3333
default_route_table_propagation = var.enable_default_route_table_propagation ? "enable" : "disable"
3434
auto_accept_shared_attachments = var.enable_auto_accept_shared_attachments ? "enable" : "disable"
35-
multicast_support = var.enable_mutlicast_support ? "enable" : "disable"
35+
multicast_support = var.enable_multicast_support ? "enable" : "disable"
3636
vpn_ecmp_support = var.enable_vpn_ecmp_support ? "enable" : "disable"
3737
dns_support = var.enable_dns_support ? "enable" : "disable"
3838
transit_gateway_cidr_blocks = var.transit_gateway_cidr_blocks

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "enable_vpn_ecmp_support" {
5656
default = true
5757
}
5858

59-
variable "enable_mutlicast_support" {
59+
variable "enable_multicast_support" {
6060
description = "Whether multicast support is enabled"
6161
type = bool
6262
default = false

0 commit comments

Comments
 (0)