Provides a Cloud Enterprise Network (CEN) Traffic Marking Policy resource.
For information about Cloud Enterprise Network (CEN) Traffic Marking Policy and how to use it, see What is Traffic Marking Policy.
Basic Usage
resource "alicloud_cen_instance" "example" {
cen_instance_name = "tf_example"
description = "an example for cen"
}
resource "alicloud_cen_transit_router" "example" {
transit_router_name = "tf_example"
cen_id = alicloud_cen_instance.example.id
}
resource "alicloud_cen_traffic_marking_policy" "example" {
marking_dscp = 1
priority = 1
traffic_marking_policy_name = "tf_example"
transit_router_id = alicloud_cen_transit_router.example.transit_router_id
}
The following arguments are supported:
description
- (Optional) The description of the Traffic Marking Policy. The description must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).dry_run
- (Optional) The dry run.marking_dscp
- (Required, ForceNew) The DSCP(Differentiated Services Code Point) of the Traffic Marking Policy. Value range: 0~63.priority
- (Required, ForceNew) The Priority of the Traffic Marking Policy. Value range: 1~100.traffic_marking_policy_name
- (Optional) The name of the Traffic Marking Policy. The name must be 2 to 128 characters in length, and must start with a letter. It can contain digits, underscores (_), and hyphens (-).transit_router_id
- (Required, ForceNew) The ID of the transit router.The following attributes are exported:
id
- ID of the resource, It is formatted to <transit_router_id>:<traffic_marking_policy_id>
.status
- The status of the resource.traffic_marking_policy_id
- The ID of the Traffic Marking Policy.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 6 mins) Used when create the Traffic Marking Policy.delete
- (Defaults to 6 mins) Used when delete the Traffic Marking Policy.update
- (Defaults to 6 mins) Used when update the Traffic Marking Policy.Cloud Enterprise Network (CEN) Traffic Marking Policy can be imported using the id, e.g.
$ terraform import alicloud_cen_traffic_marking_policy.example <transit_router_id>:<traffic_marking_policy_id>