Data Source: aws_iot_endpoint

Returns a unique endpoint specific to the AWS account making the call.

Example Usage

data "aws_iot_endpoint" "example" {}

resource "kubernetes_pod" "agent" {
  metadata {
    name = "my-device"
  }

  spec {
    container {
      image = "gcr.io/my-project/image-name"
      name  = "image-name"

      env {
        name  = "IOT_ENDPOINT"
        value = data.aws_iot_endpoint.example.endpoint_address
      }
    }
  }
}

Argument Reference

Attribute Reference

This data source exports the following attributes in addition to the arguments above: