Skip to content

Commit

Permalink
Fix README example source module name (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
hazmei authored Dec 13, 2023
1 parent 0029a99 commit b09ee54
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Create and manage [Vault Enterprise Secret Sync](https://developer.hashicorp.com
Create Vault Secret Sync destination and secret association:
```terraform
module "vault_secretsync" {
source = "SPHTech-Platform/vault-enterprise-secret-sync"
version = "0.1.0"
source = "SPHTech-Platform/secret-sync/vault"
version = "~> 0.1.0"
name = "vault-ss"
Expand All @@ -33,8 +33,8 @@ module "vault_secretsync" {
Remove some vault secrets from association by adding the attribute `unassociate_secrets`:
```terraform
module "vault_secretsync" {
source = "SPHTech-Platform/vault-enterprise-secret-sync"
version = "0.1.0"
source = "SPHTech-Platform/secret-sync/vault"
version = "~> 0.1.0"
name = "vault-ss"
Expand Down Expand Up @@ -62,8 +62,8 @@ module "vault_secretsync" {
Remove all vault secrets from association by adding the attribute `delete_all_secret_associations = true`:
```terraform
module "vault_secretsync" {
source = "SPHTech-Platform/vault-enterprise-secret-sync"
version = "0.1.0"
source = "SPHTech-Platform/secret-sync/vault"
version = "~> 0.1.0"
name = "vault-ss"
Expand All @@ -88,8 +88,8 @@ module "vault_secretsync" {
Remove vault secret sync destination by adding `delete_sync_destination = true` (NOTE: all secret associations must be removed before this can be done i.e. `delete_all_secret_associations = true`):
```terraform
module "vault_secretsync" {
source = "SPHTech-Platform/vault-enterprise-secret-sync"
version = "0.1.0"
source = "SPHTech-Platform/secret-sync/vault"
version = "~> 0.1.0"
name = "vault-ss"
Expand Down

0 comments on commit b09ee54

Please sign in to comment.