Skip to content

Commit

Permalink
Fix documentation mistake for github_repository_dependabot_security_u…
Browse files Browse the repository at this point in the history
…pdate resource to use GitHub repository name (#2439)

Co-authored-by: Keegan Campbell <[email protected]>
  • Loading branch information
ViacheslavKudinov and kfcampbell authored Nov 26, 2024
1 parent 3866012 commit 1c11053
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "github_repository" "repo" {
resource "github_repository_dependabot_security_updates" "example" {
repository = github_repository.test.id
repository = github_repository.test.name
enabled = true
}
```
Expand All @@ -34,7 +34,7 @@ resource "github_repository_dependabot_security_updates" "example" {

The following arguments are supported:

* `repository` - (Required) The repository to manage.
* `repository` - (Required) The name of the GitHub repository.

* `enabled` - (Required) The state of the automated security fixes.

Expand Down

0 comments on commit 1c11053

Please sign in to comment.