blob: 166f2c587a42c28bec6cd4329502323f5f1bb9a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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" {}
|