Skip to content

Commit a2516c4

Browse files
committed
add
1 parent a6ee96d commit a2516c4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tencentcloud/services/cam/resource_tc_cam_message_receiver.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Provides a resource to create a CAM message receiver
22

3+
~> **NOTE:** For security reasons, the CAM will return the `email` and `phone_number` parameter values in encrypted form. Please use the `ignore_changes` function in Terraform's `lifecycle` to include these two parameters.
4+
35
Example Usage
46

57
```hcl
@@ -9,6 +11,10 @@ resource "tencentcloud_cam_message_receiver" "example" {
911
country_code = "86"
1012
phone_number = "18123456789"
1113
email = "demo@qq.com"
14+
15+
lifecycle {
16+
ignore_changes = [ email, phone_number ]
17+
}
1218
}
1319
```
1420

0 commit comments

Comments
 (0)