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

Doc fixes #3564

Merged
merged 3 commits into from
Feb 11, 2022
Merged
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
1 change: 0 additions & 1 deletion website/docs/d/resource_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ In addition to all argument reference list, you can access the following attribu
- `account_id` - (String) Account ID.
- `crn` - (String) The full CRN associated with the resource group.
- `created_at` - (Timestamp) The date when the resource group initially created.
- `default` - (Bool) Specifies whether its default resource group or not.
- `id` - (String) The unique identifier of the new resource group.
- `payment_methods_url` - (String) The URL to access the payment methods details that is associated with the resource group.
- `quota_url` - (String) The URL to access the quota details that is associated with the resource group.
Expand Down
19 changes: 19 additions & 0 deletions website/docs/r/iam_trusted_profile_policy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,26 @@ resource "ibm_iam_trusted_profile_policy" "policy" {
}
}
```
### Trusted Profile Policy by using resource_attributes (serviceName,serviceInstance)
```terraform
resource "ibm_iam_trusted_profile" "profile_id" {
name = "test"
}
resource "ibm_iam_trusted_profile_policy" "policy" {
profile_id = ibm_iam_trusted_profile.profile_id.id
roles = ["Viewer"]

resource_attributes {
name = "serviceName"
value = "databases-for-redis"
}

resource_attributes {
name = "serviceInstance"
value = var.redis_guid
}
}
```
### Trusted Profile Policy using service_type with region

```terraform
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/is_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Review the argument references that you can specify for your resource.
- `name` - (Optional, String) The instance name.
- `network_interfaces` (Optional, Forces new resource, List) A list of more network interfaces that are set up for the instance.

Nested scheme for `network_interaces`:
Nested scheme for `network_interfaces`:
- `allow_ip_spoofing`- (Optional, Bool) Indicates whether IP spoofing is allowed on the interface. If **false**, IP spoofing is prevented on the interface. If **true**, IP spoofing is allowed on the interface.
~> **NOTE:**:
- `allow_ip_spoofing` requires **IP spoofing operator** access under VPC infrastructure Services. As the **IP spoofing operator**, you can enable or disable the IP spoofing check on virtual server instances.
Expand Down