Skip to content

Commit

Permalink
docs: fix aws static creds typos (#2122)
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm authored Jan 8, 2024
1 parent 0043a4e commit 69776cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions website/docs/d/aws_static_credentials.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: "vault"
page_title: "Vault: vault_aws_static_credentials data source"
page_title: "Vault: vault_aws_static_access_credentials data source"
sidebar_current: "docs-vault-datasource-aws-static-credentials"
description: |-
Reads static role credentials from an AWS secret backend in Vault
Expand Down Expand Up @@ -41,7 +41,7 @@ resource "vault_aws_secret_backend_static_role" "role" {
# generally, these blocks would be in a different module
data "vault_aws_static_credentials" "creds" {
data "vault_aws_static_access_credentials" "creds" {
backend = vault_aws_secret_backend.aws.path
name = vault_aws_secret_backend_static_role.role.role_name
}
Expand Down Expand Up @@ -73,4 +73,4 @@ In addition to the arguments above, the following attributes are exported:

* `access_key` - The access key ID associated with the IAM credential.

* `secret_key` - The secret access key assoicated with the IAM credential.
* `secret_key` - The secret access key assoicated with the IAM credential.
2 changes: 1 addition & 1 deletion website/vault.erb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</li>

<li<%= sidebar_current("docs-vault-datasource-aws-static-credentials") %>>
<a href="/docs/providers/vault/d/aws_static_credentials.html">vault_aws_static_credentials</a>
<a href="/docs/providers/vault/d/aws_static_credentials.html">vault_aws_static_access_credentials</a>
</li>

<li<%= sidebar_current("docs-vault-datasource-azure-access-credentials") %>>
Expand Down

0 comments on commit 69776cc

Please sign in to comment.