Skip to content

Commit

Permalink
add finops.roles
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 22, 2024
1 parent 9c3fdaa commit aeb7e9b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@

- 0.0.1 -- 2024-10-18
- initial creation with tags for finops
- 0.0.6 -- 2024-11-22
- add finops.roles
25 changes: 25 additions & 0 deletions base-label/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
variable "business" {
description = "Business label (organization, program, etc)"
type = string
}

variable "application" {
description = "Application label"
type = string
}

variable "environment" {
description = "Environment label"
type = string

validation {
condition = contains(["dev","test","qa","uat","ite","stage","prod","cre","sa","services","common"],var.environment)
error_message = "var.environment value invalid. See https://github.e.it.census.gov/terraform/cloud-information/tree/master/aws/documentation/naming-tagging-standard for valid list."
}
}

variable "custom" {
description = "Custom label"
type = string
default = null
}
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
_module_version = "0.0.1"
_module_version = "0.0.6"
_module_name = "boc-nts"
}

0 comments on commit aeb7e9b

Please sign in to comment.