https://github.com/libre-devops/ci-cd
A repo used to store CI-CD concepts 🚀
https://github.com/libre-devops/ci-cd
Last synced: about 1 year ago
JSON representation
A repo used to store CI-CD concepts 🚀
- Host: GitHub
- URL: https://github.com/libre-devops/ci-cd
- Owner: libre-devops
- License: mit
- Created: 2023-12-09T14:54:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-10T03:50:49.000Z (over 2 years ago)
- Last Synced: 2025-03-30T15:44:23.107Z (about 1 year ago)
- Language: PowerShell
- Size: 24.4 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
```hcl
module "rg" {
source = "registry.terraform.io/libre-devops/rg/azurerm"
rg_name = "rg-${var.short}-${var.loc}-build"
location = local.location
tags = local.tags
}
```
## Requirements
No requirements.
## Providers
No providers.
## Modules
| Name | Source | Version |
|------|--------|---------|
| [rg](#module\_rg) | registry.terraform.io/libre-devops/rg/azurerm | n/a |
## Resources
No resources.
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [Regions](#input\_Regions) | Converts shorthand name to longhand name via lookup on map list | `map(string)` |
{
"eus": "East US",
"euw": "West Europe",
"uks": "UK South",
"ukw": "UK West"
} | no |
| [env](#input\_env) | The env variable, for example - prd for production. normally passed via TF\_VAR. | `string` | `"dev"` | no |
| [loc](#input\_loc) | The loc variable, for the shorthand location, e.g. uks for UK South. Normally passed via TF\_VAR. | `string` | `"uks"` | no |
| [short](#input\_short) | The shorthand name of to be used in the build, e.g. cscot for CyberScot. Normally passed via TF\_VAR. | `string` | `"ldo"` | no |
| [static\_tags](#input\_static\_tags) | The tags variable | `map(string)` | {
"Contact": "info@cyber.scot",
"CostCentre": "671888",
"ManagedBy": "Terraform"
} | no |
## Outputs
| Name | Description |
|------|-------------|
| [rg\_name](#output\_rg\_name) | The mame for the resource group |