diff --git a/builtin/providers/aws/data_source_aws_billing_service_account.go b/builtin/providers/aws/data_source_aws_billing_service_account.go index 75ba32f94..835326199 100644 --- a/builtin/providers/aws/data_source_aws_billing_service_account.go +++ b/builtin/providers/aws/data_source_aws_billing_service_account.go @@ -1,31 +1,31 @@ package aws import ( - "fmt" + "fmt" - "github.com/hashicorp/terraform/helper/schema" + "github.com/hashicorp/terraform/helper/schema" ) // See http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-getting-started.html#step-2 var billingAccountId = "386209384616" func dataSourceAwsBillingServiceAccount() *schema.Resource { - return &schema.Resource{ - Read: dataSourceAwsBillingServiceAccountRead, + return &schema.Resource{ + Read: dataSourceAwsBillingServiceAccountRead, - Schema: map[string]*schema.Schema{ - "arn": &schema.Schema{ - Type: schema.TypeString, - Computed: true, - }, - }, - } + Schema: map[string]*schema.Schema{ + "arn": &schema.Schema{ + Type: schema.TypeString, + Computed: true, + }, + }, + } } func dataSourceAwsBillingServiceAccountRead(d *schema.ResourceData, meta interface{}) error { - d.SetId(billingAccountId) + d.SetId(billingAccountId) - d.Set("arn", "arn:aws:iam::"+billingAccountId+":root") + d.Set("arn", "arn:aws:iam::"+billingAccountId+":root") - return nil + return nil }