From 06ed3f8ffbea650900187375ea1e1f996b796315 Mon Sep 17 00:00:00 2001 From: chinthalapalli Date: Thu, 9 May 2024 21:19:33 +0530 Subject: [PATCH] fix tf lint issue --- docs/resources/bigip_as3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/bigip_as3.md b/docs/resources/bigip_as3.md index b1ac8731..89a329d2 100644 --- a/docs/resources/bigip_as3.md +++ b/docs/resources/bigip_as3.md @@ -43,13 +43,13 @@ resource "bigip_as3" "as3-example1" { # Per-Application Deployment - Example Usage for json file with tenant name resource "bigip_as3" "as3-example1" { - as3_json = file("perApplication_example.json") + as3_json = file("perApplication_example.json") tenant_name = "Test" } # Per-Application Deployment - Example Usage for json file without tenant name - Random tenant name is generated in this case resource "bigip_as3" "as3-example1" { - as3_json = file("perApplication_example.json") + as3_json = file("perApplication_example.json") } ```