From 40395e9031c36f93a50f4d34fae72461e99fc44a Mon Sep 17 00:00:00 2001 From: Debora Benedetto <debora.benedetto@hpe.com> Date: Fri, 20 May 2022 10:57:33 +0200 Subject: [PATCH] Remove ssh public key from the terraform example --- output_file_example/nginx_openstack/terraform/main.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/output_file_example/nginx_openstack/terraform/main.tf b/output_file_example/nginx_openstack/terraform/main.tf index bff9531..8d628ca 100644 --- a/output_file_example/nginx_openstack/terraform/main.tf +++ b/output_file_example/nginx_openstack/terraform/main.tf @@ -44,7 +44,6 @@ resource "openstack_compute_instance_v2" "nginx" { # Create ssh keys resource "openstack_compute_keypair_v2" "user_key" { name = "user1" - public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAsRO3dcuZVB0but7Ti9eN+Ti4FvRzQfZT6DugkOnasGSwQkuBUxr0RGHYG2O+C/ul4bN4wcM8VZ4aX9bk9vwkvBkk2uJhy0ZHqIzuwzTOmRPScHWApkxGEANO4QYiYdPYdjmGgAVuKhdqPYOJc5Spkf3n4sYrU89rhC4rLyRs7doYofxpwBVaDfUExPLAtwFb2UGGzC6c0SJzqX4ZFq72NC0zs" } # Create floating ip -- GitLab