diff options
| author | Alex <git@ajschof.me> | 2024-08-19 21:52:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-19 21:52:53 +0100 |
| commit | f93636f2808b1fbed900b162aed9c6420bfb1aa5 (patch) | |
| tree | 7434b978db351717d0679422e580919bcaf852ca /terraform/vars.tf | |
| parent | ed20a8dbeba8b88226e539673a6326e75a73746e (diff) | |
| parent | ce2761b311523a118cdead885ba7fcf1f7a4cd68 (diff) | |
| download | de-project-bentley-f93636f2808b1fbed900b162aed9c6420bfb1aa5.tar.gz de-project-bentley-f93636f2808b1fbed900b162aed9c6420bfb1aa5.zip | |
Merge pull request #66 from ajschofield/alex/tf-improvements
pr: terraform improvements
Diffstat (limited to 'terraform/vars.tf')
| -rw-r--r-- | terraform/vars.tf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/terraform/vars.tf b/terraform/vars.tf index 3c88731..b3e3e47 100644 --- a/terraform/vars.tf +++ b/terraform/vars.tf @@ -33,6 +33,21 @@ variable "project_name" { default = "tt" } +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" {} |
