mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-26 00:06:32 +00:00
13 lines
222 B
HCL
13 lines
222 B
HCL
terraform {
|
|
required_providers {
|
|
linode = {
|
|
source = "linode/linode"
|
|
version = "1.22.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "digitalocean" {
|
|
token = yamldecode(file("~/.config/doctl/config.yaml"))["access-token"]
|
|
}
|