From 62c57bf7699794153bb4e617d06fbb19f863c3c2 Mon Sep 17 00:00:00 2001 From: Zack Elliott Date: Fri, 13 May 2022 11:15:36 -0500 Subject: [PATCH] Fix Typo in example terraform --- docs/index.md | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/docs/index.md b/docs/index.md index 3f54ae99..29aacd5f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -111,27 +111,26 @@ Your ALKS configuration could look like this: ```hcl provider "alks" { - url ="https://alks.foo.com/rest" - version = ">= 2.3.0 - default_tags { - tags = { - "defaultTagKey" = "defaultTagValue" - } - } - ignore_tags { - keys = ["ignoreThisKey"] - key_prefixes = ["cai:", "coxauto:"] + url = "https://alks.foo.com/rest" + version = ">= 2.3.0" + default_tags { + tags = { + "defaultTagKey" = "defaultTagValue" } + } + ignore_tags { + keys = ["ignoreThisKey"] + key_prefixes = ["cai:", "coxauto:"] + } } - resource "alks_iamrole" "test_role" { - name = "My_Test_Role" - type = "Amazon EC2" - include_default_policies = false - enable_alks_access = false - tags = { - "roleSpecificTagKey" = "value" - } + name = "My_Test_Role" + type = "Amazon EC2" + include_default_policies = false + enable_alks_access = false + tags = { + "roleSpecificTagKey" = "value" + } } ```