alicloud_nas_access_rule
更新时间:
Provides a NAS Access Rule resource.
For information about NAS Access Rule and how to use it, see What is Access Rule.
-> NOTE: Available since v1.34.0.
Example Usage
Basic Usage
variable "name" {
default = "terraform-example"
}
provider "alicloud" {
region = "cn-hangzhou"
}
resource "random_integer" "default" {
min = 10000
max = 99999
}
resource "alicloud_nas_access_group" "default" {
access_group_type = "Vpc"
description = "ExtremeAccessGroup"
access_group_name = "terraform-example-${random_integer.default.result}"
file_system_type = "extreme"
}
resource "alicloud_nas_access_rule" "default" {
access_group_name = alicloud_nas_access_group.default.access_group_name
rw_access_type = "RDONLY"
ipv6_source_cidr_ip = "::1"
user_access_type = "no_squash"
priority = "1"
file_system_type = "extreme"
}
Argument Reference
The following arguments are supported:
access_group_name
- (Required, ForceNew) AccessGroupName.file_system_type
- (Optional, ForceNew) filesystem type. include standard, extreme.ipv6_source_cidr_ip
- (Optional, Available since v1.218.0) Ipv6SourceCidrIp.priority
- (Optional, Computed) Priority.rw_access_type
- (Optional, Computed) RWAccess.source_cidr_ip
- (Optional) SourceCidrIp.user_access_type
- (Optional, Computed) UserAccess.
Attributes Reference
The following attributes are exported:
id
- The ID of the resource supplied above.The value is formulated as<access_group_name>:<file_system_type>:<access_rule_id>
.access_rule_id
- The first ID of the resource.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 5 mins) Used when create the Access Rule.delete
- (Defaults to 5 mins) Used when delete the Access Rule.update
- (Defaults to 5 mins) Used when update the Access Rule.
Import
NAS Access Rule can be imported using the id, e.g.
$ terraform import alicloud_nas_access_rule.example <access_group_name>:<file_system_type>:<access_rule_id>
文档内容是否对您有帮助?