You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraformDummyRepo2/examples/resources/gitea_team/resource.tf

10 lines
209 B
HCL

resource "gitea_org" "test_org" {
name = "test-org"
}
resource "gitea_team" "test_team" {
name = "Devs"
organisation = gitea_org.test_org.name
description = "Devs of Test Org"
permission = "write"
}