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
@@ -56,38 +80,13 @@ The steps in this section show you how to sign in to the Azure CLI.
56
80
1. Set the subscription ID. Be sure to replace the placeholder with the appropriate value.
57
81
58
82
```shell
59
-
$ export SUBSCRIPTION_ID=<your-subscription-id>
83
+
$ export SUBSCRIPTION_ID=$(az account show --query id --output tsv)
60
84
$ az account set -s $SUBSCRIPTION_ID
61
85
```
62
86
63
87
{{% notice info %}} The following sections of the sample instructions will guide you, step-by-step, through the process of setting up a WebLogic cluster on AKS - remaining as close as possible to a native Kubernetes experience. This lets you understand and customize each step. If you wish to have a more automated experience that abstracts some lower level details, you can skip to the [Automation](#automation) section.
64
88
{{% /notice %}}
65
89
66
-
#### Prepare parameters
67
-
68
-
```shell
69
-
# Change these parameters as needed for your own environment
70
-
export ORACLE_SSO_EMAIL=<replace with your oracle account email>
71
-
export ORACLE_SSO_PASSWORD=<replace with your oracle password>
72
-
73
-
# Specify a prefix to name resources, only allow lowercase letters and numbers, between 1 and 7 characters
0 commit comments