github.com/simt2/terraform@v0.7.10/examples/aws-cloudwatch-events/sns/variables.tf (about)

     1  variable "aws_region" {
     2    description = "The AWS region to create resources in."
     3    default     = "us-east-1"
     4  }
     5  
     6  variable "rule_name" {
     7    description = "The name of the CloudWatch Event Rule"
     8    default     = "tf-example-cloudwatch-event-rule-for-sns"
     9  }
    10  
    11  variable "target_name" {
    12    description = "The name of the CloudWatch Event Target"
    13    default     = "tf-example-cloudwatch-event-target-for-sns"
    14  }
    15  
    16  variable "sns_topic_name" {
    17    description = "The name of the SNS Topic to send events to"
    18    default     = "tf-example-sns-topic"
    19  }