Skip to content

Instantly share code, notes, and snippets.

@AnqiZhou26
Last active December 3, 2022 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnqiZhou26/bdf5bd27b31cf255ff21242609143bbe to your computer and use it in GitHub Desktop.
Save AnqiZhou26/bdf5bd27b31cf255ff21242609143bbe to your computer and use it in GitHub Desktop.
terraform {
required_version = ">= 1.1.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
provider "aws" {
profile = "VideoGenerator"
region = "us-east-1"
access_key = var.aws_access_key
secret_key = var.aws_secret_key
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment