We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Include a new command azb config to allow manage global flags:
azb config
Now in order to work different commands in the same org you need to add the org-id parameter, example
azb module list --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe azb module create --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe -n myModule -d "module description" -p azurerm -s https://github.com/AzBuilder/terraform-sample-repository.git azb module list --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe azb module create --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe -n module2 -d "module description 2" -p azurerm -s https://github.com/AzBuilder/terraform-test-repository.git azb module list --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe azb workspace create --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe -n myWorkspace -s https://github.com/AzBuilder/terraform-sample-repository.git -b master -t 0.15.0 azb workspace list --organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe
And using config command For example
azb config set organization-id bbed1e3f-622b-4700-8255-8cb4832ad2fe azb module list azb module create -n myModule -d "module description" -p azurerm -s https://github.com/AzBuilder/terraform-sample-repository.git azb module list azb module create -n module2 -d "module description 2" -p azurerm -s https://github.com/AzBuilder/terraform-test-repository.git azb module list azb workspace create -n myWorkspace -s https://github.com/AzBuilder/terraform-sample-repository.git -b master -t 0.15.0 azb workspace list
The text was updated successfully, but these errors were encountered:
jcanizalez
No branches or pull requests
Include a new command
azb config
to allow manage global flags:Now in order to work different commands in the same org you need to add the org-id parameter, example
And using config command For example
The text was updated successfully, but these errors were encountered: