terraformDummyRepo2/examples/resources/gitea_org/resource.tf
2022-06-12 17:49:33 +02:00

8 lines
No EOL
161 B
HCL

resource "gitea_org" "test_org" {
name = "test-org"
}
resource "gitea_repository" "org_repo" {
username = gitea_org.test_org.name
name = "org-test-repo"
}