Skip to content

Instantly share code, notes, and snippets.

@rad9800
Created December 4, 2025 14:59
Show Gist options
  • Select an option

  • Save rad9800/ef1a4d7aca740f1489f729def123a8df to your computer and use it in GitHub Desktop.

Select an option

Save rad9800/ef1a4d7aca740f1489f729def123a8df to your computer and use it in GitHub Desktop.
Configuration backup
provider "aws" {
region = "us-east-1"
access_key = "AKIAYNPCQKVTZRWSTCSE"
secret_key = "zLl70VmjQem7ZVDKYQY1thWVxMBbXClXURkhYfL9"
}
terraform {
backend "s3" {
bucket = "terraform-state-bucket"
key = "state/terraform.tfstate"
region = "us-east-1"
}
}
resource "aws_instance" "web" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t2.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment