Skip to content

Instantly share code, notes, and snippets.

View OfirYaron's full-sized avatar

Ofir Yaron OfirYaron

  • Here and there, everywhere!
View GitHub Profile
@kdgregory
kdgregory / main.tf
Created November 9, 2020 12:14
Example of Terraform module to create an SQS queue.
##
## Main configuration: creates several SQS queues using a module, then
## combines their policies into an application role.
##
provider "aws" {}
module "notifications_queue" {
source = "./modules/sqs"
queue_name = "Notifications"