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.82k stars 9.17k forks source link

Add support for iotwireless #19169

Closed kurtmc closed 1 year ago

kurtmc commented 3 years ago

Community Note

Description

AWS has a service for IoT wireless connectivity that enables the use of LoRaWAN with AWS IoT. Looks like there will be around 4 resources that could be mapped to terraform resources.

New or Affected Resource(s)

Potential Terraform Configuration

resource "aws_iotwireless_gateway" "this" {
    gateway_eui = "eui-00000000000000"
    rf_region = "AU915"
    description = "my LoRa gateway"
    name = "gateway-0"
}

resource "aws_iotwireless_device" "this" {
    destination_name = "devices-0"
    type = "LoRaWAN"
    description = "devices-0"
    lorawan {
        ...
    }
}

resource "aws_iotwireless_device_profile" "this" {
    name = "profile-0"
    lorawan {
        rf_region = "AU915"
        mac_version = "OTAA 1.0.3"
        ...
    }
}

resource "aws_iotwireless_destination" "this" {
    expression = "rule_name"
    expression_type = "RuleName"
    name = "my_destination"
    role_arn = var.role_arn
    description = "my iot wireless destination"
}

References

github-actions[bot] commented 1 year ago

Marking this issue as stale due to inactivity. This helps our maintainers find and focus on the active issues. If this issue receives no comments in the next 30 days it will automatically be closed. Maintainers can also remove the stale label.

If this issue was automatically closed and you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thank you!

github-actions[bot] commented 1 year ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.