diff --git a/modules/attachment/README.md b/modules/attachment/README.md index 4f9c1e3..8bfc709 100644 --- a/modules/attachment/README.md +++ b/modules/attachment/README.md @@ -22,13 +22,17 @@ module "create_scc_profile_attachment " { attachment_description = "My attachment description" attachment_schedule = "daily" # Configure the scope for the attachment - below scope will scan the whole account - scope { - environment = "ibm-cloud" - properties { - name = "scope-type" - value = "account" - } - } + scope = [{ + environment = "ibm-cloud" + properties = [{ + name = "scope_type" + value = "account" + }, + { + name = "scope_id" + value = "" + }] + }] } ```