From 1496ccab555d8800d20f0b9d8fbd9032db1e28d7 Mon Sep 17 00:00:00 2001 From: Reddysekhar Gaduputi Date: Wed, 13 Jul 2022 17:38:53 +0530 Subject: [PATCH] Fix remote-exec example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit when used as it is it causes exception in validation Error: Invalid reference │ on main.tf line 33, in resource "vra7_deployment" "this": │ 33: type = ssh │ A reference to a resource type must be followed by at least one attribute access, specifying the resource name. Signed-off-by: Reddysekhar Gaduputi --- example/remote-execute/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/remote-execute/main.tf b/example/remote-execute/main.tf index cce1b73b..76c0dd8e 100644 --- a/example/remote-execute/main.tf +++ b/example/remote-execute/main.tf @@ -33,7 +33,7 @@ resource "vra7_deployment" "this" { host = self.resource_configuration[*].ip_address user = var.ssh_user password = var.ssh_password - type = ssh + type = "ssh" } // Extend volume to second disk