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

Commit

Permalink
fix: Change PK in aws_ec2_vpc_endpoint_services from (account_id, id) (
Browse files Browse the repository at this point in the history
…#1077)



#### Summary

<!--
Explain what problem this PR addresses
-->

---
  • Loading branch information
shimonp21 authored Jun 20, 2022
1 parent ecdd07e commit fbbfdc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/services/ec2/vpc_endpoint_services.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func Ec2VpcEndpointServices() *schema.Table {
Multiplex: client.ServiceAccountRegionMultiplexer("ec2"),
IgnoreError: client.IgnoreCommonErrors,
DeleteFilter: client.DeleteAccountRegionFilter,
Options: schema.TableCreationOptions{PrimaryKeys: []string{"account_id", "id"}},
Options: schema.TableCreationOptions{PrimaryKeys: []string{"arn"}},
Columns: []schema.Column{
{
Name: "account_id",
Expand Down

0 comments on commit fbbfdc5

Please sign in to comment.