generated from geekcell/terraform-aws-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
96 lines (81 loc) · 2.52 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
## NAMING
variable "name" {
default = "new-relic"
description = "Name or prefix for the resources."
type = string
}
variable "tags" {
default = {}
description = "Tags to add to the resources."
type = map(any)
}
## INTEGRATIONS
variable "new_relic_account_id" {
description = "Unique identifier for New Relic account."
type = string
}
variable "new_relic_cloudwatch_metrics_endpoint" {
default = "https://aws-api.eu01.nr-data.net/cloudwatch-metrics/v1"
description = "New Relic Cloudwatch Endpoint for either EU or US."
type = string
}
variable "new_relic_firehose_endpoint" {
default = "https://aws-api.eu.newrelic.com/firehose/v1"
description = "New Relic Firehose Endpoint for either EU or US."
type = string
}
variable "flow_logs_vpc_ids" {
default = []
description = "List of VPC IDs to enable VPC Flow Logs for. If empty, VPC Flow Logs will not be enabled."
type = list(string)
}
variable "integration_role_name_prefix" {
description = "Whether to use a prefix for the Integration Role name."
default = false
type = bool
}
variable "ingeration_role_name" {
description = "Name of the Integration Role for New Relic."
default = null
type = string
}
variable "metric_stream_role_name" {
description = "Name of the Metric Stream Role to use for Cloudwatch Metrics."
default = null
type = string
}
variable "metric_stream_role_name_prefix" {
description = "Whether to use a prefix for the Metric Stream Role name."
default = false
type = bool
}
variable "cloudwatch_metric_stream_name" {
description = "Name of the Cloudwatch Metric Stream."
default = null
type = string
}
variable "firehose_role_name_prefix" {
description = "Whether to use a prefix for the Firehose Role name."
default = false
type = bool
}
variable "firehose_role_name" {
description = "Name of the Firehose Role to use for Cloudwatch Metrics."
default = null
type = string
}
variable "firehose_metrics_delivery_stream_name" {
description = "Name of the Firehose Delivery Stream to use for Cloudwatch Metrics."
default = null
type = string
}
variable "firehose_vpc_delivery_stream_name" {
description = "Name of the Firehose Delivery Stream to use for VPC Flow Logs."
default = null
type = string
}
variable "firehose_s3_bucket_name" {
description = "Name of the S3 Bucket to use for Firehose."
default = null
type = string
}