Skip to content

Commit

Permalink
Update install guide with new helm values
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev committed Nov 25, 2024
1 parent a4424f9 commit 65cd5d5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The module has been tested with:
| <a name="input_database_username"></a> [database\_username](#input\_database\_username) | Username for the database | `string` | `"materialize"` | no |
| <a name="input_db_allocated_storage"></a> [db\_allocated\_storage](#input\_db\_allocated\_storage) | Allocated storage for the RDS instance (in GB) | `number` | `20` | no |
| <a name="input_db_identifier"></a> [db\_identifier](#input\_db\_identifier) | Identifier for the RDS instance | `string` | `"materialize-db"` | no |
| <a name="input_db_instance_class"></a> [db\_instance\_class](#input\_db\_instance\_class) | Instance class for the RDS instance | `string` | `"db.t3.medium"` | no |
| <a name="input_db_instance_class"></a> [db\_instance\_class](#input\_db\_instance\_class) | Instance class for the RDS instance | `string` | `"db.t3.large"` | no |
| <a name="input_db_max_allocated_storage"></a> [db\_max\_allocated\_storage](#input\_db\_max\_allocated\_storage) | Maximum storage for autoscaling (in GB) | `number` | `100` | no |
| <a name="input_db_multi_az"></a> [db\_multi\_az](#input\_db\_multi\_az) | Enable multi-AZ deployment for RDS | `bool` | `false` | no |
| <a name="input_enable_bucket_encryption"></a> [enable\_bucket\_encryption](#input\_enable\_bucket\_encryption) | Enable server-side encryption for the S3 bucket | `bool` | `true` | no |
Expand Down
17 changes: 9 additions & 8 deletions docs/operator-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,16 @@ cd materialize
1. Create a values file for the Helm installation (save as `materialize-values.yaml`):
```yaml
operator:
args:
cloudProvider: "aws"
cloudProvider:
type: "aws"
region: "<your-aws-region>" # e.g. us-west-2
localDevelopment: false
awsAccountID: "<your-aws-account-id>" # e.g. 123456789012
createBalancers: true
createConsole: true
environmentdIAMRoleARN: "<output.materialize_s3_role_arn>" # e.g. arn:aws:iam::123456789012:role/materialize-s3-role
startupLogFilter: "INFO"
providers:
aws:
enabled: true
accountID: "<your-aws-account-id>" # e.g. 123456789012
iam:
roles:
environment: "<output.materialize_s3_role_arn>" # e.g. arn:aws:iam::123456789012:role/materialize-s3-role

namespace:
create: true
Expand Down

0 comments on commit 65cd5d5

Please sign in to comment.