1
0
Fork 0

feat: initial commit

This commit is contained in:
Vojtěch Mareš 2024-10-16 10:58:42 +02:00
commit 86981a13e3
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
6 changed files with 293 additions and 0 deletions

25
versions.tf Normal file
View file

@ -0,0 +1,25 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.72"
}
}
}
# Configure the AWS Provider
provider "aws" {
region = "eu-central-1"
access_key = var.aws_access_key
secret_key = var.aws_secret_key
}
variable "aws_access_key" {
type = string
sensitive = true
}
variable "aws_secret_key" {
type = string
sensitive = true
}