From d4e2651701110f58704fce0fb1a60a9850e76756 Mon Sep 17 00:00:00 2001 From: edebrye <edebrye@ippon.fr> Date: Mon, 29 Mar 2021 17:53:59 +0200 Subject: [PATCH] tf fmt --- deploy/cloudwatch_api_logs.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/cloudwatch_api_logs.tf b/deploy/cloudwatch_api_logs.tf index aeabb91..64b01a7 100644 --- a/deploy/cloudwatch_api_logs.tf +++ b/deploy/cloudwatch_api_logs.tf @@ -60,10 +60,10 @@ resource "aws_iam_role_policy_attachment" "lambda_apigw" { policy_arn = aws_iam_policy.apigw_read_only.arn } -resource "aws_iam_policy" "apigw_read_only"{ - name = "ApiGatewayReadOnly" - path = "/" - description = "Read only for describing APIGateway services" +resource "aws_iam_policy" "apigw_read_only" { + name = "ApiGatewayReadOnly" + path = "/" + description = "Read only for describing APIGateway services" # Terraform's "jsonencode" function converts a # Terraform expression result to valid JSON syntax. policy = jsonencode({ -- GitLab