Skip to content

Latest commit

 

History

History
90 lines (68 loc) · 1.49 KB

aws_pinpoint_event_stream.md

File metadata and controls

90 lines (68 loc) · 1.49 KB

aws_pinpoint_event_stream

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_pinpoint_event_stream" {
  source = "./modules/aws/r/aws_pinpoint_event_stream"

  # application_id - (required) is a type of string
  application_id = null
  # destination_stream_arn - (required) is a type of string
  destination_stream_arn = null
  # role_arn - (required) is a type of string
  role_arn = null
}

top

Variables

variable "application_id" {
  description = "(required)"
  type        = string
}

variable "destination_stream_arn" {
  description = "(required)"
  type        = string
}

variable "role_arn" {
  description = "(required)"
  type        = string
}

top

Resource

resource "aws_pinpoint_event_stream" "this" {
  # application_id - (required) is a type of string
  application_id = var.application_id
  # destination_stream_arn - (required) is a type of string
  destination_stream_arn = var.destination_stream_arn
  # role_arn - (required) is a type of string
  role_arn = var.role_arn
}

top

Outputs

output "id" {
  description = "returns a string"
  value       = aws_pinpoint_event_stream.this.id
}

output "this" {
  value = aws_pinpoint_event_stream.this
}

top