Skip to content

Commit

Permalink
Sets not Lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Jul 23, 2021
1 parent f0cdf78 commit 383202e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/data_source_aws_ec2_instance_type_offerings.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func dataSourceAwsEc2InstanceTypeOfferings() *schema.Resource {
Elem: &schema.Schema{Type: schema.TypeString},
},
"locations": {
Type: schema.TypeList,
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
Expand All @@ -31,7 +31,7 @@ func dataSourceAwsEc2InstanceTypeOfferings() *schema.Resource {
ValidateFunc: validation.StringInSlice(ec2.LocationType_Values(), false),
},
"location_types": {
Type: schema.TypeList,
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
Expand Down

0 comments on commit 383202e

Please sign in to comment.