Open repository from a different machine

Forgive me for my blindness, I’m quite new to restic and already set up a repository.
I wonder if there’s a way to access that same repository from another machine other than the one that initially generated it.
I only see the option to initialise the repo and not an option to “open” or “connect” to an existing one.

To access a repository remotely you can use the rclone backend. With restic I use the rclone to access repositories over SFTP, Amazon S3 and B2 soon.

https://restic.net/blog/2018-04-01/rclone-backend

For example I use the following restic repository for S3:
restic -r rclone:s3stockholm:myname-restic-backup/folder

In my case I used rclone environment variable to configure the remote instead of using rclone.conf

export RCLONE_CONFIG_S3STOCKHOLM_TYPE=s3
export RCLONE_CONFIG_S3STOCKHOLM_PROVIDER=AWS
export RCLONE_CONFIG_S3STOCKHOLM_STORAGE_CLASS=STANDARD
export RCLONE_CONFIG_S3STOCKHOLM_REGION=eu-north-1
export RCLONE_CONFIG_S3STOCKHOLM_ACCESS_KEY_ID=$($GPG_DECRYPT_CMD $REPOSITORY_DIR/s3stockholm_key_id.gpg)
export RCLONE_CONFIG_S3STOCKHOLM_SECRET_ACCESS_KEY=$($GPG_DECRYPT_CMD $REPOSITORY_DIR/s3stockholm_access_key.gpg)
export RCLONE_CONFIG_S3STOCKHOLM_ACL=private
export RESTIC_REPOSITORY=rclone:s3stockholm:myname-restic-backup/myfolder
export RESTIC_PASSWORD=$($GPG_DECRYPT_CMD $REPOSITORY_DIR/s3stockholm_restic_password.gpg)

Sorry, this was a stupid question to ask.
I was able to open that repositopry from any othe rmachine by just providing the repo password once asked for it.
Thanks!