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.

17 lines
382 B
HCL

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
}