Skip to content

Commit

Permalink
Typo: s/visiblity/visibility
Browse files Browse the repository at this point in the history
Small typo in the docs.
  • Loading branch information
bcomnes committed Dec 10, 2020
1 parent 925082e commit 80bbed6
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 80bbed6

Please sign in to comment.