pulumi-command
pulumi-command copied to clipboard
Errors In Command Documentation File Upload Example
File: themes/default/content//registry/packages/command
Hello, specifically in these two snippets:
# The configuration of our SSH connection to the instance.
conn = command.remote.ConnectionArgs(
host = server_public_ip,
user = user_name,
privateKey = private_key,
)
# Copy the files to the remote.
copy = command.remote.CopyToRemote("copy",
connection=conn,
source=archive,
destination=dest_dir)
privateKey is not an argument (should be private_key), and destination is also not a thing (should be remote_path)