{"id":27044150,"url":"https://github.com/libre-devops/terraform-azuredevops-project","last_synced_at":"2025-11-10T09:03:10.035Z","repository":{"id":285250216,"uuid":"773905374","full_name":"libre-devops/terraform-azuredevops-project","owner":"libre-devops","description":"A module used to deploy projects 📈","archived":false,"fork":false,"pushed_at":"2024-03-18T16:52:37.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-08T06:39:51.704Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/libre-devops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-18T15:50:58.000Z","updated_at":"2024-03-18T15:51:04.000Z","dependencies_parsed_at":"2025-03-30T15:44:37.265Z","dependency_job_id":"409b17da-1fbd-4cdd-8e83-18ae5867b226","html_url":"https://github.com/libre-devops/terraform-azuredevops-project","commit_stats":null,"previous_names":["libre-devops/terraform-azuredevops-project"],"tags_count":1,"template":false,"template_full_name":"libre-devops/terraform-module-template","purl":"pkg:github/libre-devops/terraform-azuredevops-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libre-devops%2Fterraform-azuredevops-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libre-devops%2Fterraform-azuredevops-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libre-devops%2Fterraform-azuredevops-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libre-devops%2Fterraform-azuredevops-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libre-devops","download_url":"https://codeload.github.com/libre-devops/terraform-azuredevops-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libre-devops%2Fterraform-azuredevops-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283652060,"owners_count":26871285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-10T02:00:06.292Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-05T05:19:29.943Z","updated_at":"2025-11-10T09:03:10.006Z","avatar_url":"https://github.com/libre-devops.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"```hcl\nlocals {\n  date = formatdate(\"YYYYMM.DD.HHmmss\", timestamp())\n}\n\nresource \"azuredevops_project\" \"projects\" {\n  for_each = { for k in var.azdo_projects : k.name =\u003e k }\n\n  name               = each.value.name\n  description        = each.value.description != null ? each.value.description : \"Azure DevOps project created by terraform on ${local.date}\"\n  visibility         = each.value.visibility\n  version_control    = each.value.version_control\n  work_item_template = each.value.work_item_template\n  features = {\n    boards       = each.value.enable_boards == true ? \"enabled\" : \"disabled\"\n    testplans    = each.value.enable_testplans == true ? \"enabled\" : \"disabled\"\n    pipelines    = each.value.enable_pipelines == true ? \"enabled\" : \"disabled\"\n    repositories = each.value.enable_repositories == true ? \"enabled\" : \"disabled\"\n    artifacts    = each.value.enable_artifacts == true ? \"enabled\" : \"disabled\"\n  }\n}\n\n```\n## Requirements\n\nNo requirements.\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_azuredevops\"\u003e\u003c/a\u003e [azuredevops](#provider\\_azuredevops) | n/a |\n\n## Modules\n\nNo modules.\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [azuredevops_project.projects](https://registry.terraform.io/providers/microsoft/azuredevops/latest/docs/resources/project) | resource |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_azdo_projects\"\u003e\u003c/a\u003e [azdo\\_projects](#input\\_azdo\\_projects) | The Azure DevOps projects to configure | \u003cpre\u003elist(object({\u003cbr\u003e    name                = string\u003cbr\u003e    description         = optional(string)\u003cbr\u003e    visibility          = optional(string)\u003cbr\u003e    version_control     = optional(string)\u003cbr\u003e    work_item_template  = optional(string, \"\")\u003cbr\u003e    enable_boards       = optional(bool, false)\u003cbr\u003e    enable_repositories = optional(bool, true)\u003cbr\u003e    enable_pipelines    = optional(bool, true)\u003cbr\u003e    enable_testplans    = optional(bool, false)\u003cbr\u003e    enable_artifacts    = optional(bool, false)\u003cbr\u003e  }))\u003c/pre\u003e | n/a | yes |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_project_description\"\u003e\u003c/a\u003e [project\\_description](#output\\_project\\_description) | The project description |\n| \u003ca name=\"output_project_id\"\u003e\u003c/a\u003e [project\\_id](#output\\_project\\_id) | The project id |\n| \u003ca name=\"output_project_name\"\u003e\u003c/a\u003e [project\\_name](#output\\_project\\_name) | The project name |\n| \u003ca name=\"output_project_process_template_id\"\u003e\u003c/a\u003e [project\\_process\\_template\\_id](#output\\_project\\_process\\_template\\_id) | The process template id |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibre-devops%2Fterraform-azuredevops-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibre-devops%2Fterraform-azuredevops-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibre-devops%2Fterraform-azuredevops-project/lists"}