Removing examples in favor of docs
This commit is contained in:
parent
d538194f59
commit
cb05e5169a
|
@ -1,22 +0,0 @@
|
|||
# Specify the provider and access details
|
||||
provider "aws" {
|
||||
region = "${var.aws_region}"
|
||||
}
|
||||
|
||||
resource "aws_sqs_queue" "terraform_queue" {
|
||||
queue = "terraform-example-renamed"
|
||||
}
|
||||
|
||||
resource "aws_sqs_queue" "terrform_queue_attr" {
|
||||
queue = "terraform-example-attr"
|
||||
delay_seconds = 90
|
||||
max_message_size = 2048
|
||||
message_retention_seconds = 86400
|
||||
receive_wait_time_seconds = 10
|
||||
}
|
||||
|
||||
resource "aws_sqs_queue" "terraform_queue_too" {
|
||||
queue = "terraform-queue-too"
|
||||
delay_seconds = 120
|
||||
max_message_size = 4096
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
variable "aws_region" {
|
||||
description = "The AWS region to create things in."
|
||||
default = "us-west-2"
|
||||
}
|
||||
|
Loading…
Reference in New Issue