diff options
| author | Alex <git@ajschof.me> | 2024-08-15 10:58:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-15 10:58:42 +0100 |
| commit | 269422a158f8da80675c8b8331868be95952505c (patch) | |
| tree | 8a67764e4d1323ba24c5bbe24f9d1aa9cb3366f0 /terraform/vars.tf | |
| parent | a1cbded6b145b6cba75180b218d7445a51c39f4f (diff) | |
| parent | 6f56669befb9cf366b83a30b8ddce0030b7b15ee (diff) | |
| download | de-project-bentley-269422a158f8da80675c8b8331868be95952505c.tar.gz de-project-bentley-269422a158f8da80675c8b8331868be95952505c.zip | |
Merge pull request #28 from ajschofield/feature/iam.tf
pr: pull terraform changes into development for testing
Diffstat (limited to 'terraform/vars.tf')
| -rw-r--r-- | terraform/vars.tf | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/terraform/vars.tf b/terraform/vars.tf index 350c2c6..d5cdafb 100644 --- a/terraform/vars.tf +++ b/terraform/vars.tf @@ -1,31 +1,31 @@ variable "s3_extract_bucket_name" { - type = string - default = "extract-bucket" + type = string + default = "extract-bucket" } variable "s3_transform_bucket_name" { - type = string - default = "transform-bucket" + type = string + default = "transform-bucket" } variable "s3_code_bucket_name" { - type = string - default = "lambda-bucket" + type = string + default = "lambda-bucket" } variable "extract_lambda_name" { - type = string - default = "extract-lambda" + type = string + default = "extract-lambda" } variable "transform_lambda_name" { - type = string - default = "transform-lambda" + type = string + default = "transform-lambda" } variable "load_lambda_name" { - type = string - default = "load-lambda" + type = string + default = "load-lambda" } variable "project_name" { @@ -35,4 +35,4 @@ variable "project_name" { data "aws_caller_identity" "current" {} -data "aws_region" "current" {}
\ No newline at end of file +data "aws_region" "current" {} |
