fix(provider): fix repository actions secret resource update

This commit is contained in:
Julien Dessaux 2025-05-23 15:17:22 +02:00
parent 1c70b5d949
commit eb53b28b00
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 18 additions and 13 deletions

View file

@ -15,7 +15,7 @@ Use this resource to create and manage a repository actions secret.
```terraform
resource "forgejo_repository_actions_secret" {
data = "secret"
name = "test"
name = "TEST"
owner = "adyxax"
repository = "example"
}
@ -27,7 +27,7 @@ resource "forgejo_repository_actions_secret" {
### Required
- `data` (String, Sensitive) The secret's data.
- `name` (String) The secret's name.
- `name` (String) The secret's name. It must be uppercase or the plan will not be idempotent.
- `owner` (String) The secret's owner.
- `repository` (String) The secret's repository.