mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-07-15 17:21:32 +02:00
Pass Digital Ocean ssh_fingerprints as a list
* Fix digital-ocean module to pass ssh_fingerprints as a list since the module accepts a list
This commit is contained in:
committed by
Dalton Hubble
parent
04c6613ff3
commit
0da7757ef4
@ -45,7 +45,7 @@ resource "digitalocean_droplet" "controllers" {
|
||||
private_networking = true
|
||||
|
||||
user_data = "${element(data.ct_config.controller_ign.*.rendered, count.index)}"
|
||||
ssh_keys = "${var.ssh_fingerprints}"
|
||||
ssh_keys = ["${var.ssh_fingerprints}"]
|
||||
|
||||
tags = [
|
||||
"${digitalocean_tag.controllers.id}",
|
||||
|
Reference in New Issue
Block a user