11 lines
143 B
Terraform
11 lines
143 B
Terraform
|
variable "aws_profile" {
|
||
|
type = string
|
||
|
default = "aws-infra"
|
||
|
}
|
||
|
|
||
|
variable "aws_region" {
|
||
|
type = string
|
||
|
default = "eu-west-3"
|
||
|
}
|
||
|
|