Skip to content

Commit 372943b

Browse files
authored
Merge pull request #54 from daveRendon/staging
2 parents ab8cf0f + 2e88fcc commit 372943b

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
3+
"contentVersion": "1.0.0.0",
4+
"parameters": {
5+
"name": {
6+
"value": "skytap2"
7+
},
8+
"planId": {
9+
"value": "txm1r1_paygo_pub_oct23"
10+
},
11+
"offerId": {
12+
"value": "skytap-on-azure-main1"
13+
},
14+
"publisherId": {
15+
"value": "skytapinc"
16+
},
17+
"quantity": {
18+
"value": 1
19+
},
20+
"termId": {
21+
"value": "gmz7xq9ge3py"
22+
},
23+
"subscriptionId": {
24+
"value": "YOUR-SUBSCRIPTION-ID"
25+
},
26+
27+
"autoRenew": {
28+
"value": false
29+
},
30+
"location": {
31+
"value": "global"
32+
},
33+
34+
"riskPropertyBagHeader": {
35+
"value": "{\"entrypoint\":\"IbizaMarketplace (SaaS)\",\"session_Id\":\"7044a6a5c70346588b491ba2358c1641\",\"locale\":\"en-us\",\"total_price\":0,\"currency\":\"USD\",\"product_service\":\"SaaS\",\"ip_address\":\"YOUR-IP-ADDRESS\"}"
36+
}
37+
}
38+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
param planId string
2+
param offerId string
3+
param publisherId string
4+
param quantity int
5+
param termId string
6+
param subscriptionId string
7+
param riskPropertyBagHeader string
8+
param autoRenew bool
9+
param location string
10+
param name string
11+
12+
13+
resource skytap 'Microsoft.SaaS/resources@2018-03-01-beta' = {
14+
name: name
15+
location: location
16+
properties: {
17+
saasResourceName: name
18+
publisherId: publisherId
19+
SKUId: planId
20+
offerId: offerId
21+
quantity: quantity
22+
termId: termId
23+
autoRenew: autoRenew
24+
paymentChannelType: 'SubscriptionDelegated'
25+
paymentChannelMetadata: {
26+
AzureSubscriptionId: subscriptionId
27+
}
28+
storeFront: 'AzurePortal'
29+
riskPropertyBagHeader: riskPropertyBagHeader
30+
}
31+
}

0 commit comments

Comments
 (0)