Skip to content

Commit bda1a2f

Browse files
Ghettoburgerekihyy
andauthored
FMT compliance (#50)
Co-authored-by: Erkki Hyytiäinen <[email protected]>
1 parent 1b6dce9 commit bda1a2f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

examples/cloudwatch_log_sync/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
variable dd_api_key {
1+
variable "dd_api_key" {
22
type = string
33
default = "1234567890"
44
}
55

6-
variable dd_app_key {
6+
variable "dd_app_key" {
77
type = string
88
default = "1234567890"
99
}
1010

11-
variable aws_region {
11+
variable "aws_region" {
1212
type = string
1313
default = "us-west-2"
1414
}

examples/full_integration/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
variable dd_api_key {
1+
variable "dd_api_key" {
22
type = string
33
default = "1234567890"
44
}
55

6-
variable dd_app_key {
6+
variable "dd_app_key" {
77
type = string
88
default = "1234567890"
99
}
1010

11-
variable aws_region {
11+
variable "aws_region" {
1212
type = string
1313
default = "us-west-2"
1414
}

logs_monitoring_elb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ locals {
2525
elb_logs_s3_bucket = "${var.elb_logs_bucket_prefix}-${var.namespace}-${var.env}-elb-logs"
2626
}
2727

28-
data aws_iam_policy_document "elb_logs" {
28+
data "aws_iam_policy_document" "elb_logs" {
2929
statement {
3030
actions = [
3131
"s3:PutObject"

0 commit comments

Comments
 (0)