Skip to content

Commit

Permalink
chore: Update ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
balajisa09 committed Jan 14, 2024
1 parent e1c930c commit 3d26fc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ The GlueOps vault init controller project utilizes environment variables to conf
| `PAUSE_RECONCILE ` | To pause the reconcile of the controller. | `false` |
| `VAULT_KEY_SHARES ` | No of keys to be generated. | `1` |
| `VAULT_KEY_THRESHOLD ` | No of Keys required to unseal vault | `1` |
| `ENABLE_RESTORE ` | Start vault with already available backup | `false` |
| `ENABLE_RESTORE ` | Start vault with already available backup | `false` |
| `CAPTAIN_DOMAIN ` | Glueops captain domain which is thebucket name | `None` |
| `BACKUP_PREFIX ` | backup prefix path after the bucket_name. | `hashicorp-vault-backups` |

## Prerequisite

Expand Down
2 changes: 1 addition & 1 deletion secret_backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
bucket_name = os.getenv("VAULT_S3_BUCKET", "vault-backend-glueops")
file_key = os.getenv("VAULT_SECRET_FILE", "vault_access.json")
captain_domain = os.getenv("CAPTAIN_DOMAIN")
backup_prefix = os.getenv("BACKUP_PREFIX")
backup_prefix = os.getenv("BACKUP_PREFIX","hashicorp-vault-backups")

# Create a global S3 client
s3 = boto3.client('s3')
Expand Down

0 comments on commit 3d26fc9

Please sign in to comment.