Skip to content

Commit

Permalink
Added comment to clarify the poc_scripts_s3_region provider alias [sk…
Browse files Browse the repository at this point in the history
…ip actions]
  • Loading branch information
linda.nasredin committed Mar 5, 2024
1 parent 59e7621 commit adafa73
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/aws/poc/dsf_deployment/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
provider "aws" {
}

# This provider is used to get MSSQL script files located in eDSF Kit's S3 bucket in the specified region in order to
# generate dummy queries for POC purposes.
# The specified region does not have to be the same as the region where the deployment is taking place.
provider "aws" {
region = "us-east-1"
alias = "poc_scripts_s3_region"
Expand Down
3 changes: 3 additions & 0 deletions examples/aws/poc/sonar_basic_deployment/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
provider "aws" {
}

# This provider is used to get MSSQL script files located in eDSF Kit's S3 bucket in the specified region in order to
# generate dummy queries for POC purposes.
# The specified region does not have to be the same as the region where the deployment is taking place.
provider "aws" {
region = "us-east-1"
alias = "poc_scripts_s3_region"
Expand Down
3 changes: 3 additions & 0 deletions examples/aws/poc/sonar_hadr_deployment/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
provider "aws" {
}

# This provider is used to get MSSQL script files located in eDSF Kit's S3 bucket in the specified region in order to
# generate dummy queries for POC purposes.
# The specified region does not have to be the same as the region where the deployment is taking place.
provider "aws" {
region = "us-east-1"
alias = "poc_scripts_s3_region"
Expand Down

0 comments on commit adafa73

Please sign in to comment.