Resource: aws_iot_billing_group

Manages an AWS IoT Billing Group.

Example Usage

resource "aws_iot_billing_group" "example" {
  name = "example"

  properties {
    description = "This is my billing group"
  }

  tags = {
    terraform = "true"
  }
}

Argument Reference

properties Reference

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import IoT Billing Groups using the name. For example:

import {
  to = aws_iot_billing_group.example
  id = "example"
}

Using terraform import, import IoT Billing Groups using the name. For example:

% terraform import aws_iot_billing_group.example example