pc
Size: a a a
pc
S
module "providers" {
source = "/home/ubuntu/terraform/modules/providers"
}provider "aws" {
region = "eu-central-1"
access_key = "my_key"
secret_key = "my_key"
}DZ
S
S
DZ
VT
source = "/home/ubuntu/terraform/modules/providers"VT
S
source = "/home/ubuntu/terraform/modules/providers"VT
S
S
VT
S
VT
VT
S
provider "aws" {
region = "${var.region}"
access_key = "${var.access_key}"
secret_key = "${var.secret_key}"
}
var.tfvariable "region" {
default = "eu-central-1"
}
variable "access_key" {
default = "key"
}
variable "secret_key" {
default = "key"
}VT
VT
VT