We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d12fc commit b6a9254Copy full SHA for b6a9254
infra/terraform/my-stamps.tf
@@ -1,10 +1,10 @@
1
# @todo #1000 CI: validate and check Terraform configuration
2
3
-variable "token" {}
+variable "do_token" {}
4
5
# Provider docs: https://www.terraform.io/docs/providers/do/index.html
6
provider "digitalocean" {
7
- token = var.token
+ token = var.do_token
8
version = "~> 1.12"
9
}
10
infra/terraform/terraform.tfvars.example
@@ -1,2 +1,2 @@
# How to obtain a token: https://www.digitalocean.com/docs/api/create-personal-access-token/
-token = "<insert-token-here>"
+do_token = "<insert-token-here>"
0 commit comments