diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-19 19:19:44 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-19 19:19:44 +0100 |
| commit | 35bf4e8668309cb28175ef0224a6bce453abb47f (patch) | |
| tree | 39c7e44813a2e6d49dd9e446b01d9021269ccbaf /terraform/vars.tf | |
| parent | 56b2c376a925132f3bf2c7e6cad4911400955129 (diff) | |
| download | de-project-bentley-35bf4e8668309cb28175ef0224a6bce453abb47f.tar.gz de-project-bentley-35bf4e8668309cb28175ef0224a6bce453abb47f.zip | |
chore(tf): replace static tag values in main.tf with variables
Diffstat (limited to 'terraform/vars.tf')
| -rw-r--r-- | terraform/vars.tf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/terraform/vars.tf b/terraform/vars.tf index 3c88731..1adbcf7 100644 --- a/terraform/vars.tf +++ b/terraform/vars.tf @@ -33,6 +33,26 @@ variable "project_name" { default = "tt" } +variable "aws_region" { + type = string + default = "eu-west-2" +} + +variable "environment" { + type = string + default = "dev" +} + +variable "github_repo" { + type = string + default = "de-project-bentley" +} + +variable "team_name" { + type = string + default = "Team-Bentley" +} + data "aws_caller_identity" "current" {} data "aws_region" "current" {} |
