Skip to content

Commit 67df0cd

Browse files
author
Shaun Verch
committed
Fix formatter errors
1 parent 5c2e8e4 commit 67df0cd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/terraform-aws-endpoint-example/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# The examples have been upgraded to 0.12 syntax
44
# ---------------------------------------------------------------------------------------------------------------------
55
provider "aws" {
6-
region = var.region
6+
region = var.region
77
access_key = "dummy"
88
secret_key = "dummy"
99

1010
endpoints {
11-
sts = "http://localhost:5000"
12-
s3 = "http://localhost:5000"
11+
sts = "http://localhost:5000"
12+
s3 = "http://localhost:5000"
1313
}
1414
}
1515

modules/aws/auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
const (
18-
AuthAssumeRoleEnvVar = "TERRATEST_IAM_ROLE" // OS environment variable name through which Assume Role ARN may be passed for authentication
18+
AuthAssumeRoleEnvVar = "TERRATEST_IAM_ROLE" // OS environment variable name through which Assume Role ARN may be passed for authentication
1919
CustomEndpointEnvVar = "TERRATEST_CUSTOM_AWS_ENDPOINT" // Custom endpoint to use as aws service
2020
)
2121

0 commit comments

Comments
 (0)