diff --git a/aws/resource_aws_dx_connection.go b/aws/resource_aws_dx_connection.go index 82e2718eefd..f2d9d698849 100644 --- a/aws/resource_aws_dx_connection.go +++ b/aws/resource_aws_dx_connection.go @@ -43,6 +43,10 @@ func resourceAwsDxConnection() *schema.Resource { Required: true, ForceNew: true, }, + "jumbo_frame_capable": { + Type: schema.TypeBool, + Computed: true, + }, "tags": tagsSchema(), }, } @@ -111,6 +115,7 @@ func resourceAwsDxConnectionRead(d *schema.ResourceData, meta interface{}) error d.Set("name", connection.ConnectionName) d.Set("bandwidth", connection.Bandwidth) d.Set("location", connection.Location) + d.Set("jumbo_frame_capable", connection.JumboFrameCapable) if err := getTagsDX(conn, d, arn); err != nil { return err diff --git a/website/docs/r/dx_connection.html.markdown b/website/docs/r/dx_connection.html.markdown index 73fdc6ef85a..e3ed3c5036b 100644 --- a/website/docs/r/dx_connection.html.markdown +++ b/website/docs/r/dx_connection.html.markdown @@ -35,6 +35,7 @@ In addition to all arguments above, the following attributes are exported: * `id` - The ID of the connection. * `arn` - The ARN of the connection. +* `jumbo_frame_capable` - Boolean value representing if jumbo frames have been enabled for this connection. ## Import