Skip to content

Docs: Update local steps to use azure ad auth #174

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

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/wiki/[User-Guide]-Quick-Start-Phase-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Now you have created your bootstrapped environment you can deploy you Azure land
1. If you choose to deploy the bootstrap resources in Azure, then you will need to navigate to the Azure Portal and find you storage account.
1. Make note of the `Resource Group Name`, `Storage account name`and `Container Name` from the storage account.
1. If you did not choose to deploy the bootstrap resources in Azure, type `terraform init` and hit enter.
1. If you choose to deploy the bootstrap resources in Azure, type `terraform init -backend-config="resource_group_name=<Resource Group Name>" -backend-config="storage_account_name=<Storage account name>" -backend-config="container_name=<Container Name>" -backend-config="key=terraform.tfstate"` , replacing the items in angle brackets and hit enter.
1. Type `terraform plan` and hit enter.
1. Review the plan.
1. If you are happy with the plan, then type `terraform apply` and hit enter.
1. If you choose to deploy the bootstrap resources in Azure, type `terraform init -backend-config="resource_group_name=<Resource Group Name>" -backend-config="storage_account_name=<Storage account name>" -backend-config="container_name=<Container Name>" -backend-config="key=terraform.tfstate" -backend-config="use_azuread_auth=true"` , replacing the items in angle brackets and hit enter.
1. Type `terraform plan -out=tfplan` and hit enter.
1. Review the plan. Use `terraform show tfplan` to see the plan details.
1. If you are happy with the plan, then type `terraform apply tfplan` and hit enter.
1. The ALZ will now be deployed, this may take some time.
Loading