https://github.com/libre-devops/terraform-azurerm-shared-vars
A module used to help replicate vars across multiple builds ⚡
https://github.com/libre-devops/terraform-azurerm-shared-vars
Last synced: 8 months ago
JSON representation
A module used to help replicate vars across multiple builds ⚡
- Host: GitHub
- URL: https://github.com/libre-devops/terraform-azurerm-shared-vars
- Owner: libre-devops
- License: mit
- Created: 2024-02-11T20:54:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-17T13:04:09.000Z (about 1 year ago)
- Last Synced: 2025-09-05T06:39:26.371Z (9 months ago)
- Language: PowerShell
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
```hcl
#
```
## Requirements
No requirements.
## Providers
No providers.
## Modules
No modules.
## Resources
No resources.
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [cidrs](#input\_cidrs) | A variable which helps store CIDRs |
object({
mgmt = optional(object({
prd = optional(list(string))
ppd = optional(list(string))
uat = optional(list(string))
tst = optional(list(string))
dev = optional(list(string))
}))
lbd = optional(object({
prd = optional(list(string))
ppd = optional(list(string))
uat = optional(list(string))
tst = optional(list(string))
dev = optional(list(string))
}))
libd = optional(object({
prd = optional(list(string))
ppd = optional(list(string))
uat = optional(list(string))
tst = optional(list(string))
dev = optional(list(string))
}))
}) | {
"lbd": {
"dev": [
"10.36.0.0/22"
],
"ppd": [
"10.24.0.0/22"
],
"prd": [
"10.20.0.0/22"
],
"tst": [
"10.32.0.0/22"
],
"uat": [
"10.28.0.0/22"
]
},
"libd": {
"dev": [
"10.56.0.0/22"
],
"ppd": [
"10.44.0.0/22"
],
"prd": [
"10.40.0.0/22"
],
"tst": [
"10.52.0.0/22"
],
"uat": [
"10.48.0.0/22"
]
},
"mgmt": {
"dev": [
"10.16.0.0/22"
],
"ppd": [
"10.4.0.0/22"
],
"prd": [
"10.0.0.0/22"
],
"tst": [
"10.12.0.0/22"
],
"uat": [
"10.8.0.0/22"
]
}
} | no |
## Outputs
| Name | Description |
|------|-------------|
| [cidrs](#output\_cidrs) | n/a |