Skip to content

Commit b7819d4

Browse files
committed
Migration document
1 parent 7e18c66 commit b7819d4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

website/docs/r/secure_malware_policy.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ Retrieves the information of an existing Sysdig Secure Malware Policy.
1212

1313
-> **Note:** Sysdig Terraform Provider is under rapid development at this point. If you experience any issue or discrepancy while using it, please make sure you have the latest version. If the issue persists, or you have a Feature Request to support an additional set of resources, please open a [new issue](https://github.com/sysdiglabs/terraform-provider-sysdig/issues/new) in the GitHub repository.
1414

15+
-> **Note:** Due to a bug in the schema for `additional_hashes` and `ignore_hashes`, you might have faced issues with multiple hash values for these fields with the older version of the provider. After updating to the latest provider version, please update the `additional_hashes` and `ignore_hashes` fields in the malware policy definition in your terraform files to use a list of hashes like shown below, which should now allow multiple hashes:
16+
```
17+
additional_hashes = {
18+
hash = "304ef4cdda3463b24bf53f9cdd69ad3ecdab0842e7e70e2f3cfbb9f14e1c4ae6"
19+
}
20+
21+
to
22+
23+
additional_hashes = [
24+
"304ef4cdda3463b24bf53f9cdd69ad3ecdab0842e7e70e2f3cfbb9f14e1c4ae6"
25+
]
26+
```
27+
1528
## Example Usage
1629

1730
```terraform

0 commit comments

Comments
 (0)