Skip to content

Commit

Permalink
feat: Add support for efa-only interface types
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Oct 24, 2024
1 parent ed86924 commit 3d18c72
Showing 1 changed file with 1 addition and 1 deletion.
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 3d18c72

Please sign in to comment.