Skip to content

Commit

Permalink
removing comments & replacing,changed the region back to orginal region
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrummerboy09 committed Sep 10, 2020
1 parent 3972bbf commit 9010cd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data "aws_caller_identity" "current" {
data "aws_partition" "current" {
}

# testing to see if Region variable is needed
# The region is pulled from the current AWS session you are in
data "aws_region" "current" {

}
Expand Down
2 changes: 1 addition & 1 deletion test/terraform_aws_logs_combined_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func TestTerraformAwsLogsCombined(t *testing.T) {
testName := fmt.Sprintf("terratest-aws-logs-%s", strings.ToLower(random.UniqueId()))
// AWS only supports one configuration recorder per region.
// Each test using aws-config will need to specify a different region.
awsRegion := "ca-central-1"
awsRegion := "us-east-2"
vpcAzs := aws.GetAvailabilityZones(t, awsRegion)[:3]
testRedshift := !testing.Short()

Expand Down
4 changes: 2 additions & 2 deletions test/terraform_aws_logs_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestTerraformAwsLogsConfig(t *testing.T) {
tempTestFolder := test_structure.CopyTerraformFolderToTemp(t, "../", "examples/config")
// AWS only supports one configuration recorder per region.
// Each test using aws-config will need to specify a different region.
awsRegion := "us-east-1"
awsRegion := "us-east-2"

terraformOptions := &terraform.Options{
TerraformDir: tempTestFolder,
Expand Down Expand Up @@ -48,7 +48,7 @@ func TestTerraformAwsLogsConfigRootPrefix(t *testing.T) {
tempTestFolder := test_structure.CopyTerraformFolderToTemp(t, "../", "examples/config")
// AWS only supports one configuration recorder per region.
// Each test using aws-config will need to specify a different region.
awsRegion := "us-east-2"
awsRegion := "us-east-1"

terraformOptions := &terraform.Options{
TerraformDir: tempTestFolder,
Expand Down

0 comments on commit 9010cd5

Please sign in to comment.