feat(provider): add repository action variable resource import #17

This commit is contained in:
Julien Dessaux 2025-07-09 09:10:07 +02:00
parent 898bc8e607
commit b46cd7837b
Signed by: adyxax
GPG key ID: F92E51B86E07177E
4 changed files with 34 additions and 2 deletions

View file

@ -30,3 +30,11 @@ resource "forgejo_repository_actions_variable" "main" {
- `name` (String) The variable's name. It must be uppercase or the plan will not be idempotent.
- `owner` (String) The variable's owner.
- `repository` (String) The variable's repository.
## Import
Import is supported using the following syntax:
```shell
terraform import forgejo_repository_actions_variable.main <owner>/<repository_name>/<variable_name>
```