From bfe024e91629d2ef4f0a1ab0dc29623730910ab2 Mon Sep 17 00:00:00 2001 From: stellarsquall Date: Wed, 23 Apr 2025 20:04:07 +0000 Subject: [PATCH] backport of commit 36764b99628ac97321ae065db9467695988e9784 --- website/content/docs/concepts/host-discovery/aws.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/content/docs/concepts/host-discovery/aws.mdx b/website/content/docs/concepts/host-discovery/aws.mdx index 869ab034c0..3a2487f023 100644 --- a/website/content/docs/concepts/host-discovery/aws.mdx +++ b/website/content/docs/concepts/host-discovery/aws.mdx @@ -285,12 +285,12 @@ Apply the following Terraform policy: attributes_json = jsonencode({ "region" = "eu-west-2", - "disable_credential_rotation" = true }) - secrets_json = jsonencode({ + "disable_credential_rotation" = true, "role_arn" = "AWS_ROLE_ARN_VALUE", "role_external_id" = "AWS_ROLE_EXTERNAL_ID_VALUE", "role_session_name" = "AWS_ROLE_SESSION_NAME_VALUE", - "role_tags" = "AWS_ROLE_TAGS_VALUE"}) + "role_tags" = "AWS_ROLE_TAGS_VALUE" + }) } ```