13 lines
213 B
HCL
13 lines
213 B
HCL
terraform {
|
|
required_version = "~> 0.12.0"
|
|
|
|
backend "remote" {
|
|
hostname = "app.terraform.io"
|
|
organization = "example"
|
|
token = "xxxxxxxx"
|
|
|
|
workspaces {
|
|
name = "prod"
|
|
}
|
|
}
|
|
} |