-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
64 lines (53 loc) · 2 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
variable "aws_region" {
description = "AWS region where resources will be created"
type = string
}
variable "external_id_provided_by_nobl9" {
description = "External ID provided by Nobl9 to assume the IAM role"
type = string
}
variable "s3_bucket_name" {
description = "Name of S3 bucket to create for Nobl9 to export data (if omitted random name will be assigned)"
type = string
default = ""
}
variable "s3_bucket_force_destroy" {
description = "Indicates whether all objects should be deleted from the S3 bucket (on terraform destroy) so that the bucket can be destroyed without errors"
type = bool
default = false
}
variable "tags" {
description = "Map of tags to assign to the resources created by this module"
type = map(string)
default = {}
}
variable "iam_role_to_assume_by_nobl9_name" {
description = "Name of the role which is designed to be assumed by Nobl9 to get access to the previously created S3 bucket"
type = string
default = "nobl9-exporter"
}
variable "nobl9_aws_account_id" {
description = "Nobl9 AWS account ID which will be granted access to the S3 bucket"
type = string
default = 703270577975
}
variable "snowflake_storage_aws_iam_user_arn" {
description = "AWS user ARN which Snowflake returns for configured integration"
type = string
default = ""
}
variable "snowflake_storage_aws_external_id" {
description = "External ID which Snowflake returns for configured integration"
type = string
default = ""
}
variable "snowflake_iam_role_name" {
description = "Name of the role which is designed to be assumed by Snowflake to get access to the previously created S3 bucket"
type = string
default = "snowflake-integration"
}
variable "snowflake_sqs_notification_arn" {
description = "ARN of SQS provided by Snowflake to send notifications about new files in the S3 bucket (if omitted notification is not set)"
type = string
default = ""
}