Skip to content

Commit

Permalink
re-introduce tags from variables
Browse files Browse the repository at this point in the history
  • Loading branch information
pysysops committed Feb 9, 2020
1 parent 4e78f11 commit 5862503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resource "digitalocean_droplet" "droplet" {
private_networking = var.private_networking
ssh_keys = var.ssh_keys
resize_disk = var.resize_disk
tags = compact(concat(digitalocean_tag.default_tag.*.name, list("")))
tags = compact(concat(var.tags, digitalocean_tag.default_tag.*.name, list("")))
user_data = var.user_data
}
// Block storage
Expand Down

0 comments on commit 5862503

Please sign in to comment.