Skip to content

Commit

Permalink
Fix column ip_address in table gcp_compute_forwarding_rule and `g…
Browse files Browse the repository at this point in the history
…cp_compute_global_forwarding_rule` for IPv6 CIDR values (#409)
  • Loading branch information
karanpopat committed Nov 11, 2022
1 parent 2eadb8e commit 3e99a5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gcp/table_gcp_compute_forwarding_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func tableGcpComputeForwardingRule(ctx context.Context) *plugin.Table {
{
Name: "ip_address",
Description: "Specifies the IP address that this forwarding rule serves.",
Type: proto.ColumnType_IPADDR,
Type: proto.ColumnType_INET,
Transform: transform.FromField("IPAddress"),
},
{
Expand Down
2 changes: 1 addition & 1 deletion gcp/table_gcp_compute_global_forwarding_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func tableGcpComputeGlobalForwardingRule(ctx context.Context) *plugin.Table {
{
Name: "ip_address",
Description: "Specifies the IP address that this forwarding rule serves.",
Type: proto.ColumnType_IPADDR,
Type: proto.ColumnType_INET,
Transform: transform.FromField("IPAddress"),
},
{
Expand Down

0 comments on commit 3e99a5e

Please sign in to comment.