Skip to content

Commit 53bc3ac

Browse files
committed
hard code pids
1 parent dd381ab commit 53bc3ac

File tree

60 files changed

+13985
-687
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+13985
-687
lines changed

weblogic-azure-aks/src/main/arm/dbTemplate.json

+966
Large diffs are not rendered by default.

weblogic-azure-aks/src/main/arm/mainTemplate.json

+11,542
Large diffs are not rendered by default.

weblogic-azure-aks/src/main/arm/updateAppTemplate.json

+790
Large diffs are not rendered by default.

weblogic-azure-vm/arm-oraclelinux-wls-admin/admin-ssl-post-deploy/src/main/arm/mainTemplate.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"metadata": {
88
"description": "The base URI where artifacts required by this template are located. When the template is deployed using the accompanying scripts, a private location in the subscription will be used and this value will be automatically generated."
99
},
10-
"defaultValue": "${artifactsLocationBase}/arm-oraclelinux-wls-admin/admin-ssl-post-deploy/src/main/"
10+
"defaultValue": "https://raw.githubusercontent.com/oracle/weblogic-azure/refs/heads/main/weblogic-azure-vm/arm-oraclelinux-wls-admin/admin-ssl-post-deploy/src/main/"
1111
},
1212
"_artifactsLocationSasToken": {
1313
"type": "securestring",
@@ -92,7 +92,7 @@
9292
"resources": [
9393
{
9494
"type": "Microsoft.Resources/deployments",
95-
"apiVersion": "${azure.apiVersion}",
95+
"apiVersion": "2021-04-01",
9696
"name": "${post.deploy.ssl.config.start}",
9797
"properties": {
9898
"mode": "Incremental",
@@ -106,7 +106,7 @@
106106
{
107107
"type": "Microsoft.Compute/virtualMachines/extensions",
108108
"name": "[concat(parameters('adminVMName'),'/newuserscript')]",
109-
"apiVersion": "${azure.apiVersion}",
109+
"apiVersion": "2021-04-01",
110110
"location": "[parameters('location')]",
111111
"properties": {
112112
"publisher": "Microsoft.Azure.Extensions",
@@ -126,7 +126,7 @@
126126
},
127127
{
128128
"type": "Microsoft.Resources/deployments",
129-
"apiVersion": "${azure.apiVersion}",
129+
"apiVersion": "2021-04-01",
130130
"name": "${post.deploy.ssl.config.end}",
131131
"dependsOn": [
132132
"[resourceId('Microsoft.Compute/virtualMachines/extensions', parameters('adminVMName'), 'newuserscript')]"

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/createUiDefinition.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
"text": "If you encounter problems during the deployment of Oracle WebLogic Server, report them here.",
260260
"link": {
261261
"label": "Issue tracker",
262-
"uri": "https://aka.ms/arm-oraclelinux-wls-issues?version=${project.version}"
262+
"uri": "https://aka.ms/arm-oraclelinux-wls-issues?version=1.0.38"
263263
}
264264
}
265265
},

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/mainTemplate.json

+35-35
Large diffs are not rendered by default.

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/nestedtemplates/_dnszones/_createDNSZonesTemplate.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"resources": [
6161
{
6262
"type": "Microsoft.Network/dnszones",
63-
"apiVersion": "${azure.apiVersionForDNSZone}",
63+
"apiVersion": "2018-05-01",
6464
"name": "[parameters('dnszoneName')]",
6565
"location": "[parameters('location')]",
6666
"properties": {
@@ -69,7 +69,7 @@
6969
},
7070
{
7171
"type": "Microsoft.Network/dnszones/A",
72-
"apiVersion": "${azure.apiVersionForDNSZone}",
72+
"apiVersion": "2018-05-01",
7373
"condition": "[variables('const_hasARecords')]",
7474
"name": "[concat(parameters('dnszoneName'), '/', variables('const_dnszonesARecordSetNames')[copyIndex()])]",
7575
"copy": {
@@ -88,7 +88,7 @@
8888
},
8989
{
9090
"type": "Microsoft.Network/dnszones/CNAME",
91-
"apiVersion": "${azure.apiVersionForDNSZone}",
91+
"apiVersion": "2018-05-01",
9292
"condition": "[variables('const_hasCNAMERecords')]",
9393
"name": "[concat(parameters('dnszoneName'),'/', variables('const_dnszonesCNAMERecordSetNames')[copyIndex()])]",
9494
"location": "[parameters('location')]",

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/nestedtemplates/_dnszones/_uamiAndRoleAssignment.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
"resources": [
1818
{
1919
"type": "Microsoft.ManagedIdentity/userAssignedIdentities",
20-
"apiVersion": "${azure.apiVersionForIndentity}",
20+
"apiVersion": "2022-01-31-preview",
2121
"name": "[parameters('uamiName')]",
2222
"location": "[parameters('location')]"
2323
},
2424
{
2525
"type": "Microsoft.Resources/deployments",
26-
"apiVersion": "${azure.apiVersion}",
26+
"apiVersion": "2021-04-01",
2727
"name": "[variables('name_deploymentScriptContributorRoleAssignmentName')]",
2828
"subscriptionId": "[subscription().subscriptionId]",
2929
"location": "[parameters('location')]",
@@ -60,7 +60,7 @@
6060
"resources": [
6161
{
6262
"type": "Microsoft.Authorization/roleAssignments",
63-
"apiVersion": "${azure.apiVersionForRoleAssignment}",
63+
"apiVersion": "2022-04-01",
6464
"name": "[variables('name_roleAssignmentName')]",
6565
"properties": {
6666
"description": "Assign subscription scope role to User Assigned Managed Identity ",

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/nestedtemplates/_dnszones/_updateDNSZonesTemplate.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
{
108108
"type": "Microsoft.Resources/deployments",
109109
"name": "uamiDeployment",
110-
"apiVersion": "${azure.apiVersion}",
110+
"apiVersion": "2021-04-01",
111111
"properties": {
112112
"mode": "Incremental",
113113
"templateLink": {
@@ -126,7 +126,7 @@
126126
},
127127
{
128128
"type": "Microsoft.Resources/deploymentScripts",
129-
"apiVersion": "${azure.apiVersionForDeploymentScript}",
129+
"apiVersion": "2020-10-01",
130130
"dependsOn": [
131131
"[resourceId('Microsoft.Resources/deployments', 'uamiDeployment')]"
132132
],
@@ -141,7 +141,7 @@
141141
"kind": "AzureCLI",
142142
"properties": {
143143
"forceUpdateTag": "[parameters('utcValue')]",
144-
"AzCliVersion": "${azure.cli.version}",
144+
"AzCliVersion": "2.39.0",
145145
"timeout": "PT30M",
146146
"environmentVariables": [
147147
{

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/nestedtemplates/_keyVaultNestedTemplate.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
},
7878
"resources": [
7979
{
80-
"apiVersion": "${azure.apiVersionForKeyVault}",
80+
"apiVersion": "2021-10-01",
8181
"name": "[variables('name_keyVaultName')]",
8282
"location": "[parameters('location')]",
8383
"type": "Microsoft.KeyVault/vaults",
@@ -93,7 +93,7 @@
9393
},
9494
{
9595
"type": "Microsoft.KeyVault/vaults/secrets",
96-
"apiVersion": "${azure.apiVersionForKeyVault}",
96+
"apiVersion": "2021-10-01",
9797
"name": "[concat(variables('name_keyVaultName'), '/', variables('name_customIdentityKeyStoreDataSecretName'))]",
9898
"location": "[parameters('location')]",
9999
"dependsOn": [
@@ -105,7 +105,7 @@
105105
},
106106
{
107107
"type": "Microsoft.KeyVault/vaults/secrets",
108-
"apiVersion": "${azure.apiVersionForKeyVault}",
108+
"apiVersion": "2021-10-01",
109109
"name": "[concat(variables('name_keyVaultName'), '/', variables('name_customIdentityKeyStorePassPhraseSecretName'))]",
110110
"location": "[parameters('location')]",
111111
"dependsOn": [
@@ -117,7 +117,7 @@
117117
},
118118
{
119119
"type": "Microsoft.KeyVault/vaults/secrets",
120-
"apiVersion": "${azure.apiVersionForKeyVault}",
120+
"apiVersion": "2021-10-01",
121121
"name": "[concat(variables('name_keyVaultName'), '/', variables('name_customTrustKeyStoreDataSecretName'))]",
122122
"location": "[parameters('location')]",
123123
"dependsOn": [
@@ -129,7 +129,7 @@
129129
},
130130
{
131131
"type": "Microsoft.KeyVault/vaults/secrets",
132-
"apiVersion": "${azure.apiVersionForKeyVault}",
132+
"apiVersion": "2021-10-01",
133133
"name": "[concat(variables('name_keyVaultName'), '/', variables('name_customTrustKeyStorePassPhraseSecretName'))]",
134134
"location": "[parameters('location')]",
135135
"dependsOn": [
@@ -141,7 +141,7 @@
141141
},
142142
{
143143
"type": "Microsoft.KeyVault/vaults/secrets",
144-
"apiVersion": "${azure.apiVersionForKeyVault}",
144+
"apiVersion": "2021-10-01",
145145
"name": "[concat(variables('name_keyVaultName'), '/', variables('name_privateKeyAliasSecretName'))]",
146146
"location": "[parameters('location')]",
147147
"dependsOn": [
@@ -153,7 +153,7 @@
153153
},
154154
{
155155
"type": "Microsoft.KeyVault/vaults/secrets",
156-
"apiVersion": "${azure.apiVersionForKeyVault}",
156+
"apiVersion": "2021-10-01",
157157
"name": "[concat(variables('name_keyVaultName'), '/', variables('name_privateKeyPassPhraseSecretName'))]",
158158
"location": "[parameters('location')]",
159159
"dependsOn": [

weblogic-azure-vm/arm-oraclelinux-wls-admin/src/main/arm/nestedtemplates/aadNestedTemplate.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@
146146
"resources": [
147147
{
148148
"type": "Microsoft.Resources/deployments",
149-
"apiVersion": "${azure.apiVersion}",
150-
"name": "${admin.aad.start}",
149+
"apiVersion": "2021-04-01",
150+
"name": "0a77c1d0-cf1e-5185-89ad-230ffe24d0f8",
151151
"properties": {
152152
"mode": "Incremental",
153153
"template": {
@@ -159,7 +159,7 @@
159159
}
160160
},
161161
{
162-
"apiVersion": "${azure.apiVersionForVirtualMachines}",
162+
"apiVersion": "2021-11-01",
163163
"type": "Microsoft.Compute/virtualMachines/extensions",
164164
"name": "[concat(parameters('adminVMName'),'/newuserscript')]",
165165
"location": "[parameters('location')]",
@@ -180,8 +180,8 @@
180180
},
181181
{
182182
"type": "Microsoft.Resources/deployments",
183-
"apiVersion": "${azure.apiVersion}",
184-
"name": "${admin.aad.end}",
183+
"apiVersion": "2021-04-01",
184+
"name": "d273da6e-9128-5163-a8e7-9f76505ae5cc",
185185
"dependsOn": [
186186
"[resourceId('Microsoft.Compute/virtualMachines/extensions', parameters('adminVMName'), 'newuserscript')]"
187187
],

0 commit comments

Comments
 (0)