You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"alicloud_privatelink_vpc_endpoint" {
source="./modules/alicloud/r/alicloud_privatelink_vpc_endpoint"# dry_run - (optional) is a type of booldry_run=null# endpoint_description - (optional) is a type of stringendpoint_description=null# security_group_ids - (required) is a type of set of stringsecurity_group_ids=[]
# service_id - (optional) is a type of stringservice_id=null# service_name - (optional) is a type of stringservice_name=null# vpc_endpoint_name - (optional) is a type of stringvpc_endpoint_name=null# vpc_id - (required) is a type of stringvpc_id=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"alicloud_privatelink_vpc_endpoint""this" {
# dry_run - (optional) is a type of booldry_run=var.dry_run# endpoint_description - (optional) is a type of stringendpoint_description=var.endpoint_description# security_group_ids - (required) is a type of set of stringsecurity_group_ids=var.security_group_ids# service_id - (optional) is a type of stringservice_id=var.service_id# service_name - (optional) is a type of stringservice_name=var.service_name# vpc_endpoint_name - (optional) is a type of stringvpc_endpoint_name=var.vpc_endpoint_name# vpc_id - (required) is a type of stringvpc_id=var.vpc_iddynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}