Skip to content

Commit

Permalink
Subscriptions datasource: go naming convention fix
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte committed Mar 6, 2018
1 parent afb88c6 commit 73053ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azurerm/helpers/subscription/subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"github.com/hashicorp/terraform/helper/schema"
)

func SubscriptionSchema(subscriptionIdOptional bool) map[string]*schema.Schema {
func SubscriptionSchema(subscriptionIDOptional bool) map[string]*schema.Schema {
s := map[string]*schema.Schema{
"subscription_id": {
Type: schema.TypeString,
Optional: subscriptionIdOptional,
Optional: subscriptionIDOptional,
Computed: true,
},

Expand Down

0 comments on commit 73053ea

Please sign in to comment.