We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738cac7 commit e77a6ffCopy full SHA for e77a6ff
1 file changed
deployment/terraform/main.tf
@@ -10,11 +10,16 @@ locals {
10
failure_notifications_email = "failure-notifications@example.com"
11
}
12
13
-# AWS profile
14
-provider "aws" {
15
- region = "us-east-1"
16
- profile = "myuser-sso-admin"
17
-}
+# AWS profile should not be set here since
+# it needs to be blank for .github/workflows/integration_tests.yml
+# to work with the default LocalStack profile. Use environment variables instead.
+#
+# bash example: AWS_PROFILE=my-profile AWS_REGION=us-east-1 terraform apply
18
19
+#provider "aws" {
20
+# region = "us-east-1"
21
+# profile = "myuser-sso-admin"
22
+#}
23
24
# S3
25
resource "aws_s3_bucket" "images_bucket" {
0 commit comments