Skip to content

Commit

Permalink
Fix formatter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun Verch committed Apr 23, 2023
1 parent 5c2e8e4 commit 67df0cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/terraform-aws-endpoint-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# The examples have been upgraded to 0.12 syntax
# ---------------------------------------------------------------------------------------------------------------------
provider "aws" {
region = var.region
region = var.region
access_key = "dummy"
secret_key = "dummy"

endpoints {
sts = "http://localhost:5000"
s3 = "http://localhost:5000"
sts = "http://localhost:5000"
s3 = "http://localhost:5000"
}
}

Expand Down
2 changes: 1 addition & 1 deletion modules/aws/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

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

Expand Down

0 comments on commit 67df0cd

Please sign in to comment.