Skip to content

Commit

Permalink
terraform: enable build tag (backport #13841) (#14240)
Browse files Browse the repository at this point in the history
* terraform: enable build tag (#13841)

(cherry picked from commit b4c79b3)

# Conflicts:
#	testing/infra/terraform/modules/tags/output.tf

* Update testing/infra/terraform/modules/tags/output.tf

---------

Co-authored-by: Victor Martinez <[email protected]>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
mergify[bot] and v1v authored Oct 3, 2024
1 parent 4f7c9fe commit 183a008
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions testing/infra/terraform/modules/tags/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This modules exports the default tags / labels to use on Cloud Service Providers
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_project"></a> [project](#input\_project) | The value to use for the project tag/label | `any` | n/a | yes |
| <a name="input_build"></a> [build](#input\_build) | The value to use for the build tag/label, normally related to the CICD executions. | `any` | `unknown` | no |

## Outputs

Expand Down
5 changes: 5 additions & 0 deletions testing/infra/terraform/modules/tags/vars.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
variable "project" {
description = "The value to use for the project tag/label"
}

variable "build" {
description = "The value to use for the build tag/label"
default = "unknown"
}

0 comments on commit 183a008

Please sign in to comment.