Skip to content

Commit

Permalink
Merge pull request #102 from teamssix/main
Browse files Browse the repository at this point in the history
fix: fix tencent tf
  • Loading branch information
teamssix authored Oct 20, 2022
2 parents b50d48e + 1ed4998 commit 3b36607
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions tencentcloud/cvm/cvm_ssrf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ resource "tencentcloud_security_group_rule" "egress" {
}

data "tencentcloud_instance_types" "instance_types" {
cpu_core_count = 1
memory_size = 1
filter {
name = "instance-family"
values = ["S6"]
}
cpu_core_count = 2
memory_size = 2
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ resource "tencentcloud_instance" "instance" {
}

data "tencentcloud_instance_types" "instance_types" {
cpu_core_count = 1
memory_size = 1
filter {
name = "instance-family"
values = ["S6"]
}
cpu_core_count = 2
memory_size = 2
}

0 comments on commit 3b36607

Please sign in to comment.