You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/learn/quick-kubernetes-deploy-terraform.md
+5-10Lines changed: 5 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,6 @@ Azure Kubernetes Service (AKS) is a managed Kubernetes service that lets you qui
45
45
* Create an AzAPI resource [azapi_resource](https://registry.terraform.io/providers/Azure/azapi/latest/docs/resources/azapi_resource).
46
46
* 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).
47
47
48
-
---
49
-
50
48
## Login to your Azure account
51
49
52
50
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
@@ -482,7 +478,7 @@ When the application runs, a Kubernetes service exposes the application front en
482
478
483
479
## Clone the Azure Developer CLI template
484
480
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].
486
482
487
483
1. Clone the AKS store demo template from the **Azure-Samples** repository using the [`azd init`][azd-init] command with the `--template` parameter.
488
484
@@ -514,7 +510,7 @@ The `azd` template contains all the code needed to create the services, but you
514
510
```
515
511
516
512
> [!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].
518
514
519
515
3. Authenticate with your credentials on your organization's sign in page.
520
516
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
545
541
546
542
### Deploy application resources
547
543
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.
549
545
550
546
1. Create all the application resources using the [`azd up`][azd-up] command.
551
547
@@ -577,7 +573,7 @@ The `azd` template for this quickstart creates a new resource group with an AKS
577
573
6. (US) South Central US (southcentralus)
578
574
```
579
575
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:
581
577
582
578
```output
583
579
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
656
652
3. Allow purge to reuse the quickstart variables if applicable by typing `y` and pressing `Enter`.
657
653
658
654
```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.
660
656
```
661
657
662
658
:::zone-end
@@ -687,7 +683,6 @@ To learn more about AKS and walk through a complete code-to-deployment example,
0 commit comments