# Packages
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
Provides a resource to create a rum release_file
# Example Usage
```hcl
resource "tencentcloud_rum_release_file" "release_file" {
project_id = 123
version = "1.0"
file_key = "120000-last-1632921299138-index.js.map"
file_name = "index.js.map"
file_hash = "b148c43fd81d845ba7cc6907928ce430"
release_file_id = 1
}
```
# Import
rum release_file can be imported using the id, e.g.
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
Code generated by iacg; DO NOT EDIT.
Code generated by iacg; DO NOT EDIT.
Code generated by iacg; DO NOT EDIT.
Code generated by iacg; DO NOT EDIT.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides a resource to create a tsf repository
# Example Usage
```hcl
resource "tencentcloud_tsf_repository" "repository" {
repository_name = ""
repository_type = ""
bucket_name = ""
bucket_region = ""
directory = ""
repository_desc = ""
}
```
# Import
tsf repository can be imported using the id, e.g.
No description provided by the author
Provides a resource to create a vpc network_acl_quintuple
# Example Usage
```hcl
data "tencentcloud_availability_zones" "zones" {}
resource "tencentcloud_vpc" "vpc" {
name = "vpc-example"
cidr_block = "10.0.0.0/16"
}
resource "tencentcloud_subnet" "subnet" {
vpc_id = tencentcloud_vpc.vpc.id
name = "subnet-example"
cidr_block = "10.0.0.0/16"
availability_zone = data.tencentcloud_availability_zones.zones.zones.0.name
}
resource "tencentcloud_vpc_acl" "example" {
vpc_id = tencentcloud_vpc.vpc.id
name = "tf-example"
ingress = [
"ACCEPT#192.168.1.0/24#800#TCP",
"ACCEPT#192.168.1.0/24#800-900#TCP",
]
egress = [
"ACCEPT#192.168.1.0/24#800#TCP",
"ACCEPT#192.168.1.0/24#800-900#TCP",
]
}
resource "tencentcloud_vpc_network_acl_quintuple" "network_acl_quintuple" {
network_acl_id = tencentcloud_vpc_acl.example.id
network_acl_quintuple_set {
ingress {
protocol = "TCP"
description = "ingress desc."
source_port = "80"
source_cidr = "192.168.0.0/24"
destination_port = "8080"
destination_cidr = "192.168.0.0/24"
action = "DROP"
network_acl_quintuple_entry_id = "acli45-q1phngkz"
priority = 1
network_acl_direction = "INGRESS"
}
egress {
protocol = "TCP"
description = "egress desc."
source_port = "80"
source_cidr = "192.168.0.0/24"
destination_port = "8080"
destination_cidr = "192.168.0.0/24"
action = "DROP"
network_acl_quintuple_entry_id = "acli45-q1phngkz"
priority = 1
network_acl_direction = "EGRESS"
}
}
}
```
# Import
vpc network_acl_quintuple can be imported using the id, e.g.
No description provided by the author
Code generated by iacg; DO NOT EDIT.
No description provided by the author