Add linode to terraform setup
Let the migration, begin!
This commit is contained in:
parent
41289ab359
commit
0a13f78d29
3 changed files with 9 additions and 0 deletions
|
@ -12,3 +12,7 @@ provider "cloudflare" {
|
|||
provider "aws" {
|
||||
region = "eu-west-2"
|
||||
}
|
||||
|
||||
provider "linode" {
|
||||
token = var.linode_personal_access_token
|
||||
}
|
||||
|
|
|
@ -12,5 +12,9 @@ terraform {
|
|||
source = "hashicorp/aws"
|
||||
version = "3.8.0"
|
||||
}
|
||||
linode = {
|
||||
source = "linode/linode"
|
||||
version = "1.25.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
variable "vultr_api_key" {}
|
||||
variable "cloudflare_api_key" {}
|
||||
variable "cloudflare_email" {}
|
||||
variable "linode_personal_access_token" {}
|
||||
|
|
Loading…
Reference in a new issue