diff --git a/website/src/data/tags.tsx b/website/src/data/tags.tsx index 070bf6a1..47e6860d 100644 --- a/website/src/data/tags.tsx +++ b/website/src/data/tags.tsx @@ -113,6 +113,8 @@ export type TagType = | 'ai' | 'php' | 'agw' +| 'logicapps' +| 'powerapps' ; @@ -270,6 +272,11 @@ export const Tags: {[type in TagType]: Tag} = { description: 'Template architecture uses Microsoft Dataverse', color: 'hotpink', }, + powerapps:{ + label: 'Power Apps', + description: 'Template architecture uses Microsoft Power Apps', + color: 'hotpink', + }, chatgpt:{ label: 'ChatGPT', description: 'Template architecture uses ChatGPT model', @@ -438,6 +445,11 @@ export const Tags: {[type in TagType]: Tag} = { description: 'Template architecture uses Azure Redis Cache', color: 'hotpink', }, + logicapps: { + label: 'Azure Logic Apps', + description: 'Template architecture uses Azure Logic Apps', + color: 'hotpink', + }, agw: { label: 'Azure Application Gateway', description: 'Template architecture uses Azure Application Gateway', diff --git a/website/static/templates.json b/website/static/templates.json index 5cc17d2f..b1e337ab 100644 --- a/website/static/templates.json +++ b/website/static/templates.json @@ -1028,5 +1028,20 @@ "loganalytics", "bicep" ] + }, + { + "title": "Logic Apps Standard to connect with Dataverse", + "description": "An sample to show how to use azd to create Logic Apps Standard resource along with VNet for locking down Storage Account. 1 sample worflow that shows how to use use provisioned connection and App Settings to call Dataverse API. The Logic Apps also can be called only with Bearer token using OAuth rather than the default SAS Key.", + "preview": "./templates/images/logicapps-dataverse.png", + "website": "https://github.com/rajyraman", + "author": "Natraj Yegnaraman", + "source": "https://github.com/rajyraman/azd-logicapps-dataverse", + "tags": [ + "dataverse", + "powerapps", + "bicep", + "appservice", + "logicapps" + ] } ] \ No newline at end of file diff --git a/website/static/templates/images/logicapps-dataverse.png b/website/static/templates/images/logicapps-dataverse.png new file mode 100644 index 00000000..21dd10e6 Binary files /dev/null and b/website/static/templates/images/logicapps-dataverse.png differ