Skip to content

Commit

Permalink
Merge pull request #39882 from bryantbiggs/feat/efa-only
Browse files Browse the repository at this point in the history
feat: Add support for `efa-only` interface types
  • Loading branch information
ewbankkit authored Oct 25, 2024
2 parents 72a13ef + 9927b49 commit ce900cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/39882.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_launch_template: Add `efa-only` as a valid value for `network_interfaces.interface_type`
```
2 changes: 1 addition & 1 deletion internal/service/ec2/ec2_launch_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ func resourceLaunchTemplate() *schema.Resource {
"interface_type": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{"efa", "interface"}, false),
ValidateFunc: validation.StringInSlice([]string{"efa", "efa-only", "interface"}, false),
},
"ipv4_address_count": {
Type: schema.TypeInt,
Expand Down

0 comments on commit ce900cb

Please sign in to comment.