From fe5c2ef279b3190b242df08de2b680b4de5cac4c Mon Sep 17 00:00:00 2001 From: lian-manonog Date: Mon, 12 Aug 2024 16:51:56 +0100 Subject: Completed the main.tf and vars.tf file. Currently: figuring out the configurations for AWS IAM USERS --- terraform/vars.tf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 terraform/vars.tf (limited to 'terraform/vars.tf') diff --git a/terraform/vars.tf b/terraform/vars.tf new file mode 100644 index 0000000..166f2c5 --- /dev/null +++ b/terraform/vars.tf @@ -0,0 +1,23 @@ +variable "s3_extract_bucket_name" { + type = string + default = "extract-bucket" +} + +variable "s3_transform_bucket_name" { + type = string + default = "transform-bucket" +} + +variable "extract_lambda_name" { + type = string + default = "extract-lambda" +} + +variable "transform_lambda_name" { + type = string + default = "transform-lambda" +} + +data "aws_caller_identity" "current" {} + +data "aws_region" "current" {} \ No newline at end of file -- cgit v1.2.3