We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had a Terraform configuration I found myself using regularly, so I tried to extract it to https://thewordnerd.info/scm/terraform/coreos_droplet.
If I do something like:
variable "do_token" { } variable "key_file" { default = "~/.ssh/id_rsa" } variable "ssh_key_id" { } provider "digitalocean" { token = "${var.do_token}" } module "coreos_droplet" { source = "git::https://thewordnerd.info/scm/terraform/coreos_droplet" name = "perceptronapp.com" size = "1gb" key_file = "${var.key_file}" ssh_key_id = "${var.ssh_key_id}" }
I get a 401 authorization failure. It looks like I'm configuring the provider so I'm unsure as to what is happening here.
I've double checked that the token works as well.
Thanks.
The text was updated successfully, but these errors were encountered:
Thanks, I'll take a look and try this.
Sorry, something went wrong.
terraform: merge interpolated inherited provider configurations [GH-418]
0a5e06d
Fixed. Good catch. It was an edge case around inherited providers who use variables as input.
No branches or pull requests
I had a Terraform configuration I found myself using regularly, so I tried to extract it to https://thewordnerd.info/scm/terraform/coreos_droplet.
If I do something like:
I get a 401 authorization failure. It looks like I'm configuring the provider so I'm unsure as to what is happening here.
I've double checked that the token works as well.
Thanks.
The text was updated successfully, but these errors were encountered: