Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created February 24, 2022 05:39
Show Gist options
  • Save oxlb/efb17b8ff911e51eda0919ca6165e638 to your computer and use it in GitHub Desktop.
Save oxlb/efb17b8ff911e51eda0919ca6165e638 to your computer and use it in GitHub Desktop.
provider "aws" {
region = "us-east-1"
access_key = "test123"
secret_key = "testabc"
skip_credentials_validation = true
skip_requesting_account_id = true
skip_metadata_api_check = true
endpoints {
sqs = "http://localhost:4566"
}
}
# Create SQS
resource "aws_sqs_queue" "queue" {
name = "onexlab-SQS"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment