Use personal-access token for Gandi

This commit is contained in:
Jake Howard 2024-09-01 15:49:16 +01:00
parent a0710b003d
commit cb1faf0f59
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ provider "linode" {
} }
provider "gandi" { provider "gandi" {
key = var.gandi_api_key personal_access_token = var.gandi_personal_access_token
} }
provider "b2" { provider "b2" {

View file

@ -10,7 +10,7 @@ variable "linode_personal_access_token" {
sensitive = true sensitive = true
} }
variable "gandi_api_key" { variable "gandi_personal_access_token" {
sensitive = true sensitive = true
} }