Skip to content

Instantly share code, notes, and snippets.

@oxlb
Last active March 21, 2022 05:25
Show Gist options
  • Save oxlb/173dac30b8c58f6a2c10319b76f71f29 to your computer and use it in GitHub Desktop.
Save oxlb/173dac30b8c58f6a2c10319b76f71f29 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 {
sns = "http://localhost:4566"
}
}
# Create SNS
resource "aws_sns_topic" "sns_topic" {
name = "onexlab-sns-topic"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment