pulumi-command icon indicating copy to clipboard operation
pulumi-command copied to clipboard

Errors In Command Documentation File Upload Example

Open UgurKap opened this issue 7 months ago • 0 comments

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)

UgurKap avatar Mar 06 '25 17:03 UgurKap