Skip to content

Commit 924bf06

Browse files
Update Azure credentials secret according to the latest changes (#2714)
1 parent 2f1f546 commit 924bf06

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

modules/ROOT/pages/kubernetes/operations/backup-restore.adoc

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,26 @@ kubectl create secret generic awscreds --from-file=credentials=/path/to/your/cre
101101
102102
[.include-with-azure]
103103
======
104-
. Create a credentials file in the following format:
104+
. Create a credentials file in the following format (before 2025.06):
105105
+
106106
[source, properties, role='noheader']
107107
----
108108
AZURE_STORAGE_ACCOUNT_NAME=<your-azure-storage-account-name>
109109
AZURE_STORAGE_ACCOUNT_KEY=<your-azure-storage-account-key>
110110
----
111+
+
112+
Starting with 2025.06, update your credentials secret as follows:
113+
+
114+
[source, properties, role='noheader']
115+
----
116+
# Azure credentials file
117+
AZURE_STORAGE_ACCOUNT=<your_account>
118+
AZURE_STORAGE_KEY=<your_key>
119+
AZURE_CLIENT_ID=<your_service_principal_id>
120+
AZURE_CLIENT_SECRET=<your_service_principal_secret>
121+
AZURE_TENANT_ID=<your_tenant_id>
122+
----
123+
111124
. Create the secret named `azurecred` via the credentials file:
112125
+
113126
[source, shell, role='noheader']

0 commit comments

Comments
 (0)