Releases: go-gitea/terraform-provider-gitea
Releases · go-gitea/terraform-provider-gitea
v0.7.0
chore(deps): update gitea/gitea docker tag to v1.24.0 (#116) Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/116 Co-authored-by: Renovate Bot <[email protected]> Co-committed-by: Renovate Bot <[email protected]>
v0.6.0
feat/variables (#88)
**Is your feature request related to a problem? Please describe.**
I hate to manually set Action secrets and variables. It is error-prone. It is super useful to set them via terraform as those values are probably in your state 😃.
Because my changes to gitea go-sdk were approved, it is now possible!
https://gitea.com/gitea/go-sdk/commit/a239deff5a96c327c7d6f58c2a61eb95a5c7ac17
**Describe the solution you'd like**
```
resource "gitea_repository_actions_variable" "test" {
repository_owner = "marek"
repository = "nginx"
variable_name = "FROM_TF"
value = "Test value"
}
resource "gitea_repository_actions_secret" "test" {
repository_owner = "marek"
repository = "nginx"
secret_name = "SECRET_FROM_TF"
secret_value = "Test secret"
}
```
closes #89
Co-authored-by: Marek Mościchowski <[email protected]>
Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/88
Co-authored-by: Marek Mościchowski <[email protected]>
Co-committed-by: Marek Mościchowski <[email protected]>
v0.5.1
v0.5.1
v0.3.0
Full Changelog: v0.2.1...v0.3.0