Skip to content
Snippets Groups Projects
Commit 5036e4f3 authored by Krish Moodbidri's avatar Krish Moodbidri
Browse files

test- to remove file from keypair

parent a989cafb
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ variable "ssh_public_key" {}
resource "openstack_compute_keypair_v2" "keypair" {
name = var.keypair_name
public_key = file(var.ssh_public_key)
public_key = var.ssh_public_key
}
output "keypair_name" {
......@@ -11,5 +11,5 @@ output "keypair_name" {
}
output "public_key" {
value = file(var.ssh_public_key)
value = var.ssh_public_key
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment