Skip to content
This repository was archived by the owner on Jun 17, 2024. It is now read-only.

Commit 1496cca

Browse files
committed
Fix remote-exec example
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 <[email protected]>
1 parent 70c73af commit 1496cca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/remote-execute/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "vra7_deployment" "this" {
3333
host = self.resource_configuration[*].ip_address
3434
user = var.ssh_user
3535
password = var.ssh_password
36-
type = ssh
36+
type = "ssh"
3737
}
3838

3939
// Extend volume to second disk

0 commit comments

Comments
 (0)