https://github.com/multani/terraform-standard-colors
Terraform module to provide access to color definitions
https://github.com/multani/terraform-standard-colors
Last synced: 5 months ago
JSON representation
Terraform module to provide access to color definitions
- Host: GitHub
- URL: https://github.com/multani/terraform-standard-colors
- Owner: multani
- Created: 2023-02-24T15:23:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-27T16:18:23.000Z (over 3 years ago)
- Last Synced: 2025-01-23T02:24:38.935Z (over 1 year ago)
- Language: HCL
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Color definitions for Terraform
This module provides static color definitions for Terraform.
You can refer to the following color names to get the related color:
* [CSS: Basic colors](https://www.w3.org/TR/css-color-3/#html4)
* [CSS: Extended colors](https://www.w3.org/TR/css-color-3/#svg-color)
## How to use?
```hcl
module "colors" {
source = "multani/colors/standard"
version = "0.0.3"
}
output "green_web" {
value = "#${module.colors.css.green}"
}
```
Will output:
```
Outputs:
green_web = "#008000"
```