versions.tf
31 lines 532 B
Raw
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge Human 17 hours ago
1 terraform {
2 required_version = ">= 1.5.0"
3
4 required_providers {
5 aws = {
6 source = "hashicorp/aws"
7 version = "~> 5.50"
8 }
9 random = {
10 source = "hashicorp/random"
11 version = "~> 3.6"
12 }
13 tls = {
14 source = "hashicorp/tls"
15 version = "~> 4.0"
16 }
17 }
18 }
19
20 provider "aws" {
21 region = var.aws_region
22
23 default_tags {
24 tags = {
25 Project = "knowtation-paperclip"
26 Environment = var.environment
27 ManagedBy = "terraform"
28 Owner = "aaron"
29 }
30 }
31 }
File History 1 commit
sha256:8915fe406161f95c1681f9469375e7bae5b28c884f00bedbdef65e4b0cd0738d docs(flow): commit FLOW-V0-SPEC.md hygiene for 7A-INT merge Human 17 hours ago