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 authored Dec 10, 2020
1 parent 925082e commit 004bfff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 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 @@ -35,10 +35,10 @@ data "github_repository" "repo" {
}
resource "github_actions_organization_secret" "example_secret" {
secret_name = "example_secret_name"
visiblity = "selected"
plaintext_value = var.some_secret_string
selected_repository_ids = [data.github_repository.repo.repo_id]
secret_name = "example_secret_name"
visibility = "selected"
plaintext_value = var.some_secret_string
selected_repository_ids = [data.github_repository.repo.repo_id]
}
```

Expand Down

0 comments on commit 004bfff

Please sign in to comment.