Skip to content

Commit 7dd0760

Browse files
authored
add ecmp to initialisms (#226)
Issue #, if available: aws-controllers-k8s/ec2-controller#17 Description of changes: - Add ECMP as an initialism. Currently used in ec2.TransitGateway - Regenerated TGW in EC2 controller and tested w/ `make kind-test` ✅ By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 0a8fc32 commit 7dd0760

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pkg/names/names.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ var (
9191
{"Ecr", "ECR", "ecr", nil},
9292
{"Efs", "EFS", "efs", nil},
9393
{"Eks", "EKS", "eks", nil},
94+
{"Ecmp", "ECMP", "ecmp", nil},
9495
{"Fpga", "FPGA", "fpga", nil},
9596
{"Gpu", "GPU", "gpu", nil},
9697
{"Html", "HTML", "html", nil},

pkg/names/names_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ func TestNames(t *testing.T) {
6464
{"Iops", "IOPS", "iops", "iops"},
6565
{"IoPerformance", "IOPerformance", "ioPerformance", "io_performance"},
6666
{"Vlan", "VLAN", "vlan", "vlan"},
67+
{"Ecmp", "ECMP", "ecmp", "ecmp"},
6768
}
6869
for _, tc := range testCases {
6970
n := names.New(tc.original)

0 commit comments

Comments
 (0)