Skip to content

Commit

Permalink
Added the file keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
mackhendricks committed Jul 25, 2022
1 parent e199319 commit 99fed4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/terraform/do/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
digitalocean = {
source = "digitalocean/digitalocean"
version = "2.0.1"
version = "2.17.0"
}
}
}
Expand All @@ -27,7 +27,7 @@ resource "digitalocean_droplet" "dsiprouter" {
host = self.ipv4_address
user = "root"
type = "ssh"
private_key = var.pvt_key_path
private_key = file(var.pvt_key_path)
timeout = "5m"
}

Expand Down

0 comments on commit 99fed4a

Please sign in to comment.