Skip to content

Commit d3b77fe

Browse files
Slight style improvements
1 parent 6611fea commit d3b77fe

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

articles/aks/learn/quick-kubernetes-deploy-terraform.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
4545
* Create an AzAPI resource [azapi_resource](https://registry.terraform.io/providers/Azure/azapi/latest/docs/resources/azapi_resource).
4646
* Create an AzAPI resource to generate an SSH key pair using [azapi_resource_action](https://registry.terraform.io/providers/Azure/azapi/latest/docs/resources/azapi_resource_action).
4747

48-
---
49-
5048
## Login to your Azure account
5149

5250
First, log into your Azure account and authenticate using one of the methods described in the following section.
@@ -55,8 +53,6 @@ First, log into your Azure account and authenticate using one of the methods des
5553

5654
[!INCLUDE [azure-cli-prepare-your-environment-no-header.md](~/articles/reusable-content/azure-cli/azure-cli-prepare-your-environment-no-header.md)]
5755

58-
---
59-
6056
## Implement the Terraform code
6157

6258
> [!NOTE]
@@ -482,7 +478,7 @@ When the application runs, a Kubernetes service exposes the application front en
482478

483479
## Clone the Azure Developer CLI template
484480

485-
The Azure Developer CLI allows you to quickly download samples from the **Azure-Samples** repository. In our quickstart, you will download the `aks-store-demo` application. For more information on the general uses cases see the [`azd` overview][azd-overview].
481+
The Azure Developer CLI allows you to quickly download samples from the **Azure-Samples** repository. In our quickstart, you download the `aks-store-demo` application. For more information on the general uses cases, see the [`azd` overview][azd-overview].
486482

487483
1. Clone the AKS store demo template from the **Azure-Samples** repository using the [`azd init`][azd-init] command with the `--template` parameter.
488484

@@ -514,7 +510,7 @@ The `azd` template contains all the code needed to create the services, but you
514510
```
515511

516512
> [!IMPORTANT]
517-
> If you're using an out-of-network virtual machine or GitHub Codespace, certain Azure security policies cause conflicts when used to sign in with `azd auth login`. If you run into an issue here, you can follow the azd auth workaround provided below, which involves using a `curl` request to the localhost URL you were redirected to after running [`azd auth login`][az-auth-login].
513+
> If you're using an out-of-network virtual machine or GitHub Codespace, certain Azure security policies cause conflicts when used to sign in with `azd auth login`. If you run into an issue here, you can follow the azd auth workaround provided, which involves using a `curl` request to the localhost URL you were redirected to after running [`azd auth login`][az-auth-login].
518514

519515
3. Authenticate with your credentials on your organization's sign in page.
520516
4. Confirm that it's you trying to connect from the Azure CLI.
@@ -545,7 +541,7 @@ To deploy the application, you use the `azd up` command to create all the object
545541

546542
### Deploy application resources
547543

548-
The `azd` template for this quickstart creates a new resource group with an AKS cluster and an Azure Key Vault. The key vault stores client secrets and runs the services in the `pets` namespace
544+
The `azd` template for this quickstart creates a new resource group with an AKS cluster and an Azure Key Vault. The key vault stores client secrets and runs the services in the `pets` namespace.
549545

550546
1. Create all the application resources using the [`azd up`][azd-up] command.
551547

@@ -577,7 +573,7 @@ The `azd` template for this quickstart creates a new resource group with an AKS
577573
6. (US) South Central US (southcentralus)
578574
```
579575

580-
`azd` automatically runs the preprovisioning and postprovisioning commands to create the resources for your application. This process can take a few minutes to complete. Once complete, you should see an output similar to the following example:
576+
`azd` automatically runs the preprovision and postprovision hooks to create the resources for your application. This process can take a few minutes to complete. Once complete, you should see an output similar to the following example:
581577

582578
```output
583579
SUCCESS: Your workflow to provision and deploy to Azure completed in 9 minutes 40 seconds.
@@ -656,7 +652,7 @@ Once you're finished with the quickstart, clean up unnecessary resources to avoi
656652
3. Allow purge to reuse the quickstart variables if applicable by typing `y` and pressing `Enter`.
657653

658654
```output
659-
[Warning]: These resources have soft delete enabled allowing them to be recovered for a period or time after deletion. During this period, their names may not be reused. In the future, you can use the argument --purge to skip this confirmation.
655+
[Warning]: These resources have soft delete enabled allowing them to be recovered for a period or time after deletion. During this period, their names can't be reused. In the future, you can use the argument --purge to skip this confirmation.
660656
```
661657

662658
:::zone-end
@@ -687,7 +683,6 @@ To learn more about AKS and walk through a complete code-to-deployment example,
687683
[aks-solution-guidance]: /azure/architecture/reference-architectures/containers/aks-start-here?toc=/azure/aks/toc.json&bc=/azure/aks/breadcrumb/toc.json
688684
[baseline-reference-architecture]: /azure/architecture/reference-architectures/containers/aks/baseline-aks?toc=/azure/aks/toc.json&bc=/azure/aks/breadcrumb/toc.json
689685
[azd-install]: /azure/developer/azure-developer-cli/install-azd
690-
[azd-up]: /azure/developer/azure-developer-cli/reference#azd-up
691686
[azd-init]: /azure/developer/azure-developer-cli/reference#azd-init
692687
[azd-up]: /azure/developer/azure-developer-cli/reference#azd-up
693688
[az-auth-login]: /azure/developer/azure-developer-cli/reference#azd-auth-login

0 commit comments

Comments
 (0)