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?
191 views Asked by Kyberias At
1
There are 1 answers
Related Questions in AZURE-BICEP
- Azure pipeline unable to deploy via a bicep file and set values for its parameters
- What's the difference between Microsoft.ApiManagement/service/portalsettings and Microsoft.ApiManagement/service/portalconfigs
- Rabbitmq on azure container app error 405 on trying to create queue on web management
- Error creating CosmosDB Mongo Collections via bicep
- OpenID Connect setup for App Service through Bicep
- Azure - What causes a ServiceBus Topic to be "partitioned"
- bicep template to inject an azure app into vnet
- Unble to create synapse workspace sql bool using bicep getting error (Code: CreateSqlComputeOrchestrationError;OperationInterrupted)
- After Azure Logic app deployment no event subscription is created on storage account
- self service approach for creating AzureCosmos DB collection and indexes using AzureBicepse or ARM template
- unable to assign rbac role via code using bicep fails with Insufficient read or write permissions on storage account
- Assigning rbac role to a principal ID error "message":"Tenant ID, application ID, principal ID, and scope are not allowed to be updated
- Bicep script to create Azure Data Factory Dataset for Source and Destination or Sink
- Can't configure a value for "network_interface": its value will be decided │ automatically based on the result of applying this configuration
- You do not have access to any management group. Please create one in the Azure portal and try to deploy again
Related Questions in AZURE-FRONT-DOOR
- Azure Front-Door - Redirection is not working in some browsers
- Connect Azure front door with APIM and Azure Web App
- Get client IP in my next.js app served as an Azure static web app
- Performance testing - receiving high rate of HTTP 429 Too Many Requests
- How to troubleshoot origin health?
- Azure Front Door customise cache key depending on request header value
- Azure Front Door URL rewrite to display pages from microsite hosted in different domain
- Azure App Service returns a 403 error when making a self-request with a Private Endpoint from Front Door in place
- How to tell if a request is coming from Scotland?
- Azure App Service: Cant resolve SCM domain from behind Azure Front Door
- Configure multiple backends with Azure Front Door using paths
- How to automatically approve a private endpoint request from front door using bicep?
- I want to restrict access of my azure Kubernetes nginx ingress only for a particular location (api path) , only to be accessed from azure front door
- how to add traffic manager in front of front door
- Automating Azure FrontDoor Managed Certificate Renewal for Custom Domains with CNAME chain
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?
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)

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.