Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telekom-mms/terraform-azuredevops-core
A Terraform module that manages the core resources from the azuredevops provider.
https://github.com/telekom-mms/terraform-azuredevops-core
azuredevops project terraform
Last synced: 29 days ago
JSON representation
A Terraform module that manages the core resources from the azuredevops provider.
- Host: GitHub
- URL: https://github.com/telekom-mms/terraform-azuredevops-core
- Owner: telekom-mms
- License: mpl-2.0
- Created: 2023-07-19T11:23:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-28T11:26:26.000Z (4 months ago)
- Last Synced: 2024-08-28T12:45:36.608Z (4 months ago)
- Topics: azuredevops, project, terraform
- Language: HCL
- Homepage: https://telekom-mms.github.io/terraform-template
- Size: 26.4 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# core
This module manages the microsoft/azuredevops core resources, see https://registry.terraform.io/providers/microsoft/azuredevops/latest/docs.
For more information about the module structure see https://telekom-mms.github.io/terraform-template.
_<-- This file is autogenerated, please do not change. -->_
## Requirements
| Name | Version |
|------|---------|
| terraform | >=1.5 |
| azuredevops | >=0.6.0 |## Providers
| Name | Version |
|------|---------|
| azuredevops | >=0.6.0 |## Resources
| Name | Type |
|------|------|
| azuredevops_project.project | resource |## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| project | Resource definition, default settings are defined within locals and merged with var settings. For more information look at [Outputs](#Outputs). | `any` | `{}` | no |## Outputs
| Name | Description |
|------|-------------|
| project | Outputs all attributes of resource_type. |
| variables | Displays all configurable variables passed by the module. __default__ = predefined values per module. __merged__ = result of merging the default values and custom values passed to the module |## Examples
Minimal configuration to install the desired resources with the module
```hcl
module "core" {
source = "registry.terraform.io/telekom-mms/core/azuredevops"
project = {
mms = {}
}
}
```Advanced configuration to install the desired resources with the module
```hcl
module "core" {
source = "registry.terraform.io/telekom-mms/core/azuredevops"
project = {
mms = {
description = "project for github"
features = {
"testplans" = "enabled"
"artifacts" = "enabled"
}
}
}
}
```