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

test-keypari without file

parent 5048d34b
No related branches found
No related tags found
2 merge requests!6Add CD feature to the repo,!1wip: test-keypair without file
Pipeline #7877 failed with stages
in 10 seconds
......@@ -20,7 +20,7 @@ provider "openstack" {
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" {
......@@ -28,5 +28,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