On the portal we can configure the Origin type as for example Storage (blobs) or Storage (static web site). I don't see such a property in a bicep script.
How is Azure Frontdoor Origin type defined in Bicep?
183 Views Asked by Kyberias At
1
There are 1 best solutions below
Related Questions in AZURE-BICEP
- How can I provide suggestions for parameter without enforcing validation in bicep?
- How can I add a log analytics workspace to an existing ampls through bicep
- How to create Azure NSG flow log with Traffic Analytics using Bicep
- api connection failed connect to Automation account using logicapp through bicep
- How is Azure Frontdoor Origin type defined in Bicep?
- Azure SystemAssigned managed identity not being set by bicep deploy
- Synapse Serverless SQL instance in managed application cannot access storage account. AADSTS700016
- Getting an Error : "The expression is involved in a cycle" while running Azure Bicep code
- Need help to enable vm replication using azure bicep
- How distinguish stage of infra vs stage of software in naming convention (IaC)
- azure bicep function app with event grid trigger from storage account - how to create a function resource for event grid subscription?
- FrontDoor Bicep Fails - How do I get the reason?
- Using Bicep as IaC tool to handle external infrastructure changes
- Creating an Azure app registration using Bicep : which privileges are needed?
- Bicep Azure B2C Deployment via Github Actions
Related Questions in AZURE-FRONT-DOOR
- Azure APIM how to change the request url
- Azure Front Door - multiple frontends IDs as a parameter (array) to routing rule?
- How to authorized only traffic from my Frontdoor to my Web App private endpoint?
- Can't recreate a frontdoor private link after removing it
- How is Azure Frontdoor Origin type defined in Bicep?
- I can't remove and readd a front door private link origin
- Azure Blob Storage Account in both CDN & Front Door
- FrontDoor Bicep Fails - How do I get the reason?
- Azure APIM Developer Portal Designer via Front Door
- Hide url segment of azure b2c
- traffic manager nested profiles and the front door
- How to properly route my app features in Front Door
- azure front door error:OpenSSL SSL_connect: SSL_ERROR_SYSCALL
- How to check if an Azure Front Door Profile has been created before November 8 2022?
- Azure Container App increasing performance
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

I don't see a value for the "origin type" in the ARM template. I believe the Azure Portal uses this "Origin type" drop down to determine which existing resources to reference for the origin. Selecting an existing resource populates the "Origin hostname" in the portal, which populates the "hostName" property in the ARM template.
In the bicep file you'll populate the "hostName" property and there is no need to worry about the "Origin type" exposed in the Azure Portal; it's only there for the portal.