Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update docs for cm account resource #6038

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/d/cm_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: "ibm"
page_title: "IBM : ibm_cm_account"
description: |-
Get information about cm_account
subcategory: "Catalog Management API"
subcategory: "Catalog Management"
---

# ibm_cm_account
Expand Down
35 changes: 34 additions & 1 deletion website/docs/r/cm_account.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: "ibm"
page_title: "IBM : ibm_cm_account"
description: |-
Manages cm_account.
subcategory: "Catalog Management API"
subcategory: "Catalog Management"
---

# ibm_cm_account
Expand All @@ -14,6 +14,39 @@ Create, update, and delete cm_accounts with this resource.

```hcl
resource "ibm_cm_account" "cm_account_instance" {
region_filter = "geo:eu"

account_filters {
category_filters {
category_name = "provider"
filter {
filter_terms = [
"ibm_third_party",
]
}
include = false
}
category_filters {
category_name = "category"
filter {
filter_terms = [
"watson",
"ai",
"blockchain",
]
}
include = false
}
id_filters {
exclude {}
include {
filter_terms = [
"9dcb8ea2-30b4-4adf-8821-0d35f0a9d74f-global",
]
}
}
include_all = true
}
}
```

Expand Down
Loading