alicloud_resource_manager_shared_resource
更新时间:
Provides a Resource Manager Shared Resource resource.
For information about Resource Manager Shared Resource and how to use it, see What is Shared Resource.
-> NOTE: Available since v1.111.0.
Example Usage
Basic Usage
variable "name" {
default = "tfexample"
}
data "alicloud_zones" "example" {
available_resource_creation = "VSwitch"
}
resource "alicloud_vpc" "example" {
vpc_name = var.name
cidr_block = "192.168.0.0/16"
}
resource "alicloud_vswitch" "example" {
zone_id = data.alicloud_zones.example.zones.0.id
cidr_block = "192.168.0.0/16"
vpc_id = alicloud_vpc.example.id
vswitch_name = var.name
}
resource "alicloud_resource_manager_resource_share" "example" {
resource_share_name = var.name
}
resource "alicloud_resource_manager_shared_resource" "example" {
resource_id = alicloud_vswitch.example.id
resource_share_id = alicloud_resource_manager_resource_share.example.id
resource_type = "VSwitch"
}
Argument Reference
The following arguments are supported:
resource_id
- (Required, ForceNew) The resource ID need shared.resource_share_id
- (Required, ForceNew) The resource share ID of resource manager.resource_type
- (Required, ForceNew) The resource type of should shared. Valid values:VSwitch
.- The following types are added after v1.173.0:
ROSTemplate
andServiceCatalogPortfolio
. - The following types are added after v1.192.0:
PrefixList
andImage
. - The following types are added after v1.194.1:
PublicIpAddressPool
. - The following types are added after v1.208.0:
KMSInstance
.
Attributes Reference
The following attributes are exported:
id
- The resource ID of Shared Resource. The value is formatted<resource_share_id>:<resource_id>:<resource_type>
.status
- The status of the Shared Resource.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 11 mins) Used when create the Shared Resource.delete
- (Defaults to 11 mins) Used when delete the Shared Resource.
Import
Resource Manager Shared Resource can be imported using the id, e.g.
$ terraform import alicloud_resource_manager_shared_resource.example <resource_share_id>:<resource_id>:<resource_type>
文档内容是否对您有帮助?