Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
chore: rename lag_state to state
Browse files Browse the repository at this point in the history
  • Loading branch information
James Quigley committed Jul 22, 2021
1 parent 2d67773 commit a313fb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/tables/aws_directconnect_lags.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Information about Direct Connect Link Aggregation Group (LAG)
|jumbo_frame_capable|boolean|Indicates whether jumbo frames (9001 MTU) are supported.|
|id|text|The ID of the LAG.|
|name|text|The name of the LAG.|
|lag_state|text|The state of the LAG. Possible values are: requested, pending, available, down, deleting, deleted, unknown|
|state|text|The state of the LAG. Possible values are: requested, pending, available, down, deleting, deleted, unknown|
|location|text|The location of the LAG.|
|mac_sec_capable|boolean|Indicates whether the LAG supports MAC Security (MACsec).|
|minimum_links|integer|The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.|
Expand Down
3 changes: 2 additions & 1 deletion resources/directconnect_lags.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ func DirectconnectLags() *schema.Table {
Resolver: schema.PathResolver("LagName"),
},
{
Name: "lag_state",
Name: "state",
Description: "The state of the LAG. Possible values are: requested, pending, available, down, deleting, deleted, unknown",
Type: schema.TypeString,
Resolver: schema.PathResolver("LagState"),
},
{
Name: "location",
Expand Down

0 comments on commit a313fb5

Please sign in to comment.