» huaweicloud_smn_subscription_v2
Manages a V2 subscription resource within HuaweiCloud.
» Example Usage
resource "huaweicloud_smn_topic_v2" "topic_1" {
name = "topic_1"
display_name = "The display name of topic_1"
}
resource "huaweicloud_smn_subscription_v2" "subscription_1" {
topic_urn = "${huaweicloud_smn_topic_v2.topic_1.id}"
endpoint = "mailtest@gmail.com"
protocol = "email"
remark = "O&M"
}
resource "huaweicloud_smn_subscription_v2" "subscription_2" {
topic_urn = "${huaweicloud_smn_topic_v2.topic_1.id}"
endpoint = "13600000000"
protocol = "sms"
remark = "O&M"
}
» Argument Reference
The following arguments are supported:
-
topic_urn
- (Required) Resource identifier of a topic, which is unique. -
endpoint
- (Required) Message endpoint. For an HTTP subscription, the endpoint starts with http://. For an HTTPS subscription, the endpoint starts with https://. For an email subscription, the endpoint is a mail address. For an SMS message subscription, the endpoint is a phone number. -
protocol
- (Required) Protocol of the message endpoint. Currently, email, sms, http, and https are supported. -
remark
- (Optional) Remark information. The remarks must be a UTF-8-coded character string containing 128 bytes. -
subscription_urn
- (Optional) Resource identifier of a subscription, which is unique. -
owner
- (Optional) Project ID of the topic creator. -
status
- (Optional) Subscription status. 0 indicates that the subscription is not confirmed. 1 indicates that the subscription is confirmed. 3 indicates that the subscription is canceled.
» Attributes Reference
The following attributes are exported: