9 lines
132 B
Terraform
9 lines
132 B
Terraform
|
|
provider "aws" {
|
||
|
|
profile = "default"
|
||
|
|
region = "eu-central-1"
|
||
|
|
default_tags {
|
||
|
|
tags = {
|
||
|
|
Terraform = "true"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|