flat-pager-43269
01/01/2023, 8:07 PMcp_config = command.remote.CopyFile(
'config',
connection=connection,
local_path='install.sh',
remote_path='install.sh',
opts=pulumi.ResourceOptions(depends_on=[vm]),
)
the problem starts when I run pulumi up
in order to update an existing stack. when I change the file install.sh
the new file is not being copied to the existing machine. what can I do?white-balloon-205
01/02/2023, 3:11 AM