Skip to content

Commit 320596d

Browse files
authored
Feat/support mariadb data source (#1877)
* feat/support-mariadb-data-source * feat/support-mariadb-data-source
1 parent 7025258 commit 320596d

File tree

44 files changed

+4247
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4247
-0
lines changed

.changelog/1877.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
```release-note:new-data-source
2+
tencentcloud_mariadb_dcn_detail
3+
```
4+
5+
```release-note:new-data-source
6+
tencentcloud_mariadb_file_download_url
7+
```
8+
9+
```release-note:new-data-source
10+
tencentcloud_mariadb_flow
11+
```
12+
13+
```release-note:new-data-source
14+
tencentcloud_mariadb_instance_specs
15+
```
16+
17+
```release-note:new-data-source
18+
tencentcloud_mariadb_log_files
19+
```
20+
21+
```release-note:new-data-source
22+
tencentcloud_mariadb_orders
23+
```
24+
25+
```release-note:new-data-source
26+
tencentcloud_mariadb_price
27+
```
28+
29+
```release-note:new-data-source
30+
tencentcloud_mariadb_project_security_groups
31+
```
32+
33+
```release-note:new-data-source
34+
tencentcloud_mariadb_renewal_price
35+
```
36+
37+
```release-note:new-data-source
38+
tencentcloud_mariadb_sale_info
39+
```
40+
41+
```release-note:new-data-source
42+
tencentcloud_mariadb_slow_logs
43+
```
44+
45+
```release-note:new-data-source
46+
tencentcloud_mariadb_upgrade_price
47+
```
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
resource "tencentcloud_address_template" "example" {
2+
name = "example"
3+
addresses = ["10.0.0.0/24", "1.1.1.1", "1.0.0.1-1.0.0.100"]
4+
}
5+
6+
resource "tencentcloud_address_template_group" "example" {
7+
name = "example"
8+
template_ids = [tencentcloud_address_template.example.id]
9+
}
10+
11+
data "tencentcloud_address_templates" "example" {
12+
id = tencentcloud_address_template.example.id
13+
}
14+
15+
data "tencentcloud_address_template_groups" "example" {
16+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
terraform {
2+
required_version = ">= 0.12"
3+
}

0 commit comments

Comments
 (0)