hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.81k stars 9.16k forks source link

[New Resource]: IoT Software Package #32884

Open BjoernSaja opened 1 year ago

BjoernSaja commented 1 year ago

Description

AWS recently released the new IoT Software Package Catalog feature. This introduces a couple of new resources and data sources. It would be great if we could manage them in Terraform.

Requested Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_iot_software_package" "this" {
  name        = "test"
  description = "test"

  tags = {
    Test = "test"
  }
}

resource "aws_iot_software_version" "this" {
  name        = "test"
  package     = aws_iot_software_package.this.name
  description = "test"

  attributes = {
    Test = "test"
  }

  tags = {
    Test = "test"
  }
}

data "aws_iot_software_package" "this" {
  name = "test"
}

data "aws_iot_software_version" "this" {
  name = "test"
  package = "test"
}

References

Would you like to implement a fix?

No

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue