Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix README example source module name #3

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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