Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(as): add a new datasource to get list of AS group tags #6548

Merged
merged 1 commit into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions docs/data-sources/as_group_tags.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
subcategory: "Auto Scaling"
layout: "huaweicloud"
page_title: "HuaweiCloud: huaweicloud_as_group_tags"
description: |-
Use this data source to get the list of all AS groups tags under the specified project.
---

# huaweicloud_as_group_tags

Use this data source to get the list of all AS groups tags under the specified project.

## Example Usage

```hcl
variable "resource_type" {}

data "huaweicloud_as_group_tags" "test" {
resource_type = var.resource_type
}
```

## Argument Reference

The following arguments are supported:

* `region` - (Optional, String) Specifies the region in which to query the resource.
If omitted, the provider-level region will be used.

* `resource_type` - (Required, String) Specifies the resource type.
The valid values are as follows:
+ **scaling_group_tag**: Indicates the resource type is AS group.

## Attribute Reference

In addition to all arguments above, the following attributes are exported:

* `id` - The data source ID.

* `tags` - The list of the tags.

The [tags](#tags_struct) structure is documented below.

<a name="tags_struct"></a>
The `tags` block supports:

* `key` - The key of the tag.

* `values` - The list of the tag values.
3 changes: 2 additions & 1 deletion huaweicloud/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,8 @@ func Provider() *schema.Provider {

"huaweicloud_as_activity_logs": as.DataSourceActivityLogs(),
"huaweicloud_as_configurations": as.DataSourceASConfigurations(),
"huaweicloud_as_group_quotas": as.DataSourceAsGroupQuotas(),
"huaweicloud_as_group_tags": as.DataSourceAsGroupTags(),
"huaweicloud_as_groups": as.DataSourceASGroups(),
"huaweicloud_as_hook_instances": as.DataSourceAsHookInstances(),
"huaweicloud_as_instances": as.DataSourceASInstances(),
Expand All @@ -499,7 +501,6 @@ func Provider() *schema.Provider {
"huaweicloud_as_policies": as.DataSourceASPolicies(),
"huaweicloud_as_policy_execute_logs": as.DataSourcePolicyExecuteLogs(),
"huaweicloud_as_quotas": as.DataSourceAsQuotas(),
"huaweicloud_as_group_quotas": as.DataSourceAsGroupQuotas(),

"huaweicloud_asm_meshes": asm.DataSourceAsmMeshes(),

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
package as

import (
"fmt"
"testing"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"

"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/services/acceptance"
)

func TestAccDataSourceGroupTags_basic(t *testing.T) {
var (
dataSourceName = "data.huaweicloud_as_group_tags.test"
name = acceptance.RandomAccResourceName()
dc = acceptance.InitDataSourceCheck(dataSourceName)
)

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() {
acceptance.TestAccPreCheck(t)
},
ProviderFactories: acceptance.TestAccProviderFactories,
Steps: []resource.TestStep{
{
Config: testDataSourceGroupTags_basic(name),
Check: resource.ComposeTestCheckFunc(
dc.CheckResourceExists(),
resource.TestCheckResourceAttrSet(dataSourceName, "tags.#"),
resource.TestCheckResourceAttrSet(dataSourceName, "tags.0.key"),
resource.TestCheckResourceAttrSet(dataSourceName, "tags.0.values.#"),
),
},
},
})
}

func testDataSourceGroupTags_basic(name string) string {
return fmt.Sprintf(`
%[1]s

resource "huaweicloud_as_configuration" "test"{
scaling_configuration_name = "%[2]s"
instance_config {
image = data.huaweicloud_images_image.test.id
flavor = data.huaweicloud_compute_flavors.test.ids[0]
key_name = huaweicloud_kps_keypair.acc_key.id
security_group_ids = [huaweicloud_networking_secgroup.test.id]

disk {
size = 40
volume_type = "SSD"
disk_type = "SYS"
}
}
}

resource "huaweicloud_as_group" "test"{
scaling_group_name = "%[2]s"
scaling_configuration_id = huaweicloud_as_configuration.test.id
vpc_id = huaweicloud_vpc.test.id
delete_publicip = true
delete_volume = true

networks {
id = huaweicloud_vpc_subnet.test.id
}

tags = {
foo = "bar"
key = "value"
}
}

data "huaweicloud_as_group_tags" "test" {
resource_type = "scaling_group_tag"

depends_on = [huaweicloud_as_group.test]
}`, testAccASConfiguration_base(name), name)
}
122 changes: 122 additions & 0 deletions huaweicloud/services/as/data_source_huaweicloud_as_group_tags.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
// Generated by PMS #592
package as

import (
"context"
"strings"

"github.com/hashicorp/go-multierror"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/tidwall/gjson"

"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/config"
"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/helper/httphelper"
"github.com/huaweicloud/terraform-provider-huaweicloud/huaweicloud/helper/schemas"
)

func DataSourceAsGroupTags() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceAsGroupTagsRead,

Schema: map[string]*schema.Schema{
"region": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: `Specifies the region in which to query the resource. If omitted, the provider-level region will be used.`,
},
"resource_type": {
Type: schema.TypeString,
Required: true,
Description: `Specifies the resource type.`,
},
"tags": {
Type: schema.TypeList,
Computed: true,
Description: `The list of the tags.`,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"key": {
Type: schema.TypeString,
Computed: true,
Description: `The key of the tag.`,
},
"values": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Description: `The list of the tag values.`,
},
},
},
},
},
}
}

type GroupTagsDSWrapper struct {
*schemas.ResourceDataWrapper
Config *config.Config
}

func newGroupTagsDSWrapper(d *schema.ResourceData, meta interface{}) *GroupTagsDSWrapper {
return &GroupTagsDSWrapper{
ResourceDataWrapper: schemas.NewSchemaWrapper(d),
Config: meta.(*config.Config),
}
}

func dataSourceAsGroupTagsRead(_ context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
wrapper := newGroupTagsDSWrapper(d, meta)
lstibtir, err := wrapper.ListScalingTagInfosByTenantId()
if err != nil {
return diag.FromErr(err)
}

id, err := uuid.GenerateUUID()
if err != nil {
return diag.FromErr(err)
}
d.SetId(id)

err = wrapper.listScalingTagInfosByTenantIdToSchema(lstibtir)
if err != nil {
return diag.FromErr(err)
}

return nil
}

// @API AS GET /autoscaling-api/v1/{project_id}/{resource_type}/tags
func (w *GroupTagsDSWrapper) ListScalingTagInfosByTenantId() (*gjson.Result, error) {
client, err := w.NewClient(w.Config, "autoscaling")
if err != nil {
return nil, err
}

uri := "/autoscaling-api/v1/{project_id}/{resource_type}/tags"
uri = strings.ReplaceAll(uri, "{resource_type}", w.Get("resource_type").(string))
return httphelper.New(client).
Method("GET").
URI(uri).
Request().
Result()
}

func (w *GroupTagsDSWrapper) listScalingTagInfosByTenantIdToSchema(body *gjson.Result) error {
d := w.ResourceData
mErr := multierror.Append(nil,
d.Set("region", w.Config.GetRegion(w.ResourceData)),
d.Set("tags", schemas.SliceToList(body.Get("tags"),
func(tags gjson.Result) any {
return map[string]any{
"key": tags.Get("key").Value(),
"values": schemas.SliceToStrList(tags.Get("values")),
}
},
)),
)
return mErr.ErrorOrNil()
}
Loading