federate-your-repos/github.tf

17 lines
382 B
Terraform
Raw Normal View History

2023-04-22 09:59:07 +00:00
data "github_organization" "dda" {
name = "DomainDrivenArchitecture"
}
resource "github_repository" "repo" {
name = local.name_with_stage
visibility = "public"
auto_init = false
has_issues = false
has_projects = false
has_downloads = false
has_wiki = false
has_discussions = false
archive_on_destroy = false
}