@@ -57,6 +57,7 @@ const (
5757 usageClass = "usage-class"
5858 rootDeviceType = "root-device-type"
5959 enaSupport = "ena-support"
60+ efaSupport = "efa-support"
6061 hibernationSupport = "hibernation-support"
6162 baremetal = "baremetal"
6263 fpgaSupport = "fpga-support"
@@ -131,6 +132,7 @@ Full docs can be found at github.com/aws/amazon-` + binName
131132 cli .StringOptionsFlag (usageClass , cli .StringMe ("u" ), nil , "Usage class: [spot or on-demand]" , []string {"spot" , "on-demand" })
132133 cli .StringOptionsFlag (rootDeviceType , nil , nil , "Supported root device types: [ebs or instance-store]" , []string {"ebs" , "instance-store" })
133134 cli .BoolFlag (enaSupport , cli .StringMe ("e" ), nil , "Instance types where ENA is supported or required" )
135+ cli .BoolFlag (efaSupport , nil , nil , "Instance types that support Elastic Fabric Adapters (EFA)" )
134136 cli .BoolFlag (hibernationSupport , nil , nil , "Hibernation supported" )
135137 cli .BoolFlag (baremetal , nil , nil , "Bare Metal instance types (.metal instances)" )
136138 cli .BoolFlag (fpgaSupport , cli .StringMe ("f" ), nil , "FPGA instance types" )
@@ -204,6 +206,7 @@ Full docs can be found at github.com/aws/amazon-` + binName
204206 UsageClass : cli .StringMe (flags [usageClass ]),
205207 RootDeviceType : cli .StringMe (flags [rootDeviceType ]),
206208 EnaSupport : cli .BoolMe (flags [enaSupport ]),
209+ EfaSupport : cli .BoolMe (flags [efaSupport ]),
207210 HibernationSupported : cli .BoolMe (flags [hibernationSupport ]),
208211 Hypervisor : cli .StringMe (flags [hypervisor ]),
209212 BareMetal : cli .BoolMe (flags [baremetal ]),
0 commit comments