Skip to content

Commit f93d0c3

Browse files
committed
Add alternate AWS credentials instructions
1 parent b7daa14 commit f93d0c3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

module_0/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,16 @@ The team here sets up the centralized Feast feature repository and CI/CD in GitH
107107
### Step 0: Setup S3 bucket for registry and file sources
108108
This assumes you have an AWS account & Terraform setup. If you don't:
109109
- Set up an AWS account & setup your credentials as per the [AWS quickstart](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html#cli-configure-quickstart-creds)
110+
- You could skip installing the AWS CLI by modifying `infra/main.tf` to have:
111+
```HCL
112+
provider "aws" {
113+
region = "us-west-2"
114+
access_key = "my-access-key"
115+
secret_key = "my-secret-key"
116+
}
117+
```
110118
- Install [Terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli#install-terraform)
111119
112-
113120
We've made a simple Terraform project to help with S3 bucket creation (and uploading the test data we need):
114121
```bash
115122
cd infra/

0 commit comments

Comments
 (0)