Skip to content

Commit

Permalink
fix admin token guide example
Browse files Browse the repository at this point in the history
  • Loading branch information
bcmdarroch committed Apr 7, 2021
1 parent ba55f6f commit 7d0bf5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guides/vault-admin-token.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "hcp_vault_cluster" "example_vault_cluster" {
cluster_id = "hcp-tf-example-vault-cluster"
}
data "hcp_vault_cluster_admin_token" "example_vault_admin_token" {
resource "hcp_vault_cluster_admin_token" "example_vault_admin_token" {
cluster_id = hcp_vault_cluster.example_vault_cluster.cluster_id
}
```
2 changes: 1 addition & 1 deletion examples/guides/vault_cluster_admin_token/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ resource "hcp_vault_cluster" "example_vault_cluster" {
cluster_id = "hcp-tf-example-vault-cluster"
}

data "hcp_vault_cluster_admin_token" "example_vault_admin_token" {
resource "hcp_vault_cluster_admin_token" "example_vault_admin_token" {
cluster_id = hcp_vault_cluster.example_vault_cluster.cluster_id
}

0 comments on commit 7d0bf5b

Please sign in to comment.