Unrelated to Dax's question, but: Using the `comm...
# general
f
Unrelated to Dax's question, but: Using the
command
package, would I be able to replicate a simplistic Ansible (what I mean by that is that it mostly operates on
ssh
)? The docs suggest I could use this with any cloud VPS provider as long as I've got
ssh
access? https://www.pulumi.com/registry/packages/command/
r
you should be able to run any arbitrary commands on either your local or remote system (over ssh), using
local.Command
or
remote.Command
respectively. This includes any CLI commands, scripts or applications. Here is another example that uses both local and remote Command, as well as Ansible itself: https://www.pulumi.com/blog/deploy-wordpress-aws-pulumi-ansible/
f
Ooooo, thanks James!