Created
February 24, 2022 05:39
-
-
Save oxlb/efb17b8ff911e51eda0919ca6165e638 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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