Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

Commit

Permalink
Typo: s/visiblity/visibility (integrations#629)
Browse files Browse the repository at this point in the history
Small typo in the docs.
  • Loading branch information
bcomnes authored Jan 7, 2021
1 parent e0dd312 commit eb0948c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/r/actions_organization_secret.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ in your code. See below for an example of this abstraction.

```hcl
resource "github_actions_organization_secret" "example_secret" {
secret_name = "example_secret_name"
visiblity = "private"
plaintext_value = var.some_secret_string
secret_name = "example_secret_name"
visibility = "private"
plaintext_value = var.some_secret_string
}
```

Expand All @@ -36,7 +36,7 @@ data "github_repository" "repo" {
resource "github_actions_organization_secret" "example_secret" {
secret_name = "example_secret_name"
visiblity = "selected"
visibility = "selected"
plaintext_value = var.some_secret_string
selected_repository_ids = [data.github_repository.repo.repo_id]
}
Expand Down

0 comments on commit eb0948c

Please sign in to comment.