Skip to content

Instantly share code, notes, and snippets.

@kunduso
Created November 4, 2020 11:41
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 kunduso/7416b5da596e93d567fc637c60e5b6a5 to your computer and use it in GitHub Desktop.
Save kunduso/7416b5da596e93d567fc637c60e5b6a5 to your computer and use it in GitHub Desktop.
AWS variables for Terraform
variable "region" {
description = "The region where to provision resources"
type = string
}
variable "access_key" {
description = "The access_key that belongs to the IAM user"
type = string
}
variable "secret_key" {
description = "The secret_key that belongs to the IAM user"
type = string
}
variable "bucket_name" {
description = "The name of S3 bucket"
default = "terraform-bucket"
type = string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment