Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to reflect optional parameter --subscription to retrieve the Fully Qualified Domain Name of the CycleServer VM. #21

Open
tomaslaz opened this issue May 21, 2019 · 1 comment

Comments

@tomaslaz
Copy link

I have to explicitly provide the name of the subscription that the resource group belongs to. I am not sure why this is the case for me but I assume this will be the case for similar accounts for other universities/institutes when people are assigned to multiple subscriptions.

@tomaslaz
Copy link
Author

https://docs.microsoft.com/en-us/azure/cyclecloud/quickstart-install-cyclecloud

Section: Log into the CycleCloud Application Server

It says "To retrieve the Fully Qualified Domain Name (FQDN) of the CycleServer VM from either the Azure Portal or using the CLI":

export RESOURCE_GROUP="MyQuickstart"
az network public-ip show -g ${RESOURCE_GROUP?} -n cycle-ip --query dnsSettings.fqdn

I had to provide the name of the subscription that the resource group belongs to as follows:

export RESOURCE_GROUP="MyQuickstart"
export SUBSCRIPTION_NAME="My Subscription"

az network public-ip show --subscription "$SUBSCRIPTION_NAME" -g ${RESOURCE_GROUP?} -n cycle-ip --query dnsSettings.fqdn

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant