Skip to content

Commit

Permalink
fix alphabetic order in provider.go
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuherbert committed Apr 11, 2017
1 parent 73d467f commit 5eec194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/providers/google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ func Provider() terraform.ResourceProvider {
},

DataSourcesMap: map[string]*schema.Resource{
"google_iam_policy": dataSourceGoogleIamPolicy(),
"google_compute_zones": dataSourceGoogleComputeZones(),
"google_compute_network": dataSourceGoogleComputeNetwork(),
"google_compute_subnetwork": dataSourceGoogleComputeSubnetwork(),
"google_compute_zones": dataSourceGoogleComputeZones(),
"google_iam_policy": dataSourceGoogleIamPolicy(),
},

ResourcesMap: map[string]*schema.Resource{
Expand Down

0 comments on commit 5eec194

Please sign in to comment.