1 KiB
1 KiB
page_title | subcategory | description |
---|---|---|
forgejo_repository_actions_variable Resource - terraform-provider-forgejo | Use this resource to create and manage a repository actions variable. |
forgejo_repository_actions_variable (Resource)
Use this resource to create and manage a repository actions variable.
Example Usage
resource "forgejo_repository_actions_variable" "main" {
data = "value"
name = "test"
owner = "adyxax"
repository = "example"
}
Schema
Required
data
(String) The variable's data.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:
terraform import forgejo_repository_actions_variable.main <owner>/<repository_name>/<variable_name>