Provides a KMS Network Rule resource. Network rules that can be bound by Application Access Point's policies.
For information about KMS Network Rule and how to use it, see What is Network Rule.
Basic Usage
variable "name" {
default = "terraform-example"
}
resource "alicloud_kms_network_rule" "default" {
description = "example-description"
source_private_ip = ["10.10.10.10/24", "192.168.17.13", "100.177.24.254"]
network_rule_name = var.name
}
The following arguments are supported:
description
- (Optional) Description.network_rule_name
- (Optional, ForceNew, Computed) Network Rule Name.source_private_ip
- (Required) Allowed private network addresses.The following attributes are exported:
id
- The ID of the resource supplied above.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 5 mins) Used when create the Network Rule.delete
- (Defaults to 5 mins) Used when delete the Network Rule.update
- (Defaults to 5 mins) Used when update the Network Rule.KMS Network Rule can be imported using the id, e.g.
$ terraform import alicloud_kms_network_rule.example <id>