FHIR-Server-for-Azure deployment - azure

I am setting up a new open source FHIR Server (https://github.com/Microsoft/fhir-server) in Azure portal(1 month free subscription) as following the documents mentioned in the url . After deploying, I can retrieve the metadata of the service. But I have security issues to access the api's.
I don't have the Azure AD setup.So can some one guide me how to setup the FHIR server in Azure with out authorization/authentication?

Set the FhirServer:Security:Enabled to false and Authentication/Authorization will be disabled.

Related

403 error with Microsoft Graph in a Azure Web app

i followed this tutorial
Tutorial: Access Microsoft Graph
I can login with my organization user to the web app, but i can't use the GraphServiceClient. It always redirect me to the "signin-oidc" page with a 403 error.
Am i missing something in the tutorial? What should i check in the configurations?
Thank you in advance
According to the tutorial you provided, it requires the azure web app to enable easy-auth by azure ad, it also provides a tutorial on how to enable it.
After creating azure web app, go to Authentication then click Add identity provider, then you need to choose microsoft as the provider and then create a new azure ad app if needed. Now we can deploy sample code into azure after doing the configuration. And as the default redirect url in the code is /signin-oidc so we need to add it into azure ad authentication panel-> redirect url.
==============================UPDATE============================
If you used my sample, you also need to modify the appsetting.json with the azure ad application client id and client secret. You can use the azure ad app created just now, you only need to add redirect url with https://localhost:44321/signin-oidc and https://web_app_name.azurewebsites.net/signin-oidc. But in this sample, you don't need to enable easy-auth for azure web app. You only need to create a web app and deploy the sample code to it. I used visual studio to create and deploy. If you wanna create azure web app in azure portal, you just need to click New in azure portal->app service and complete the fields.

Is there details on using Azure FHIR API / Azure FHIR Open Source with a service bus?

I have been tasked with finding out if/how the Azure FHIR API or the Azure FHIR Open Source can be used in conjunction with an enterprise service bus? however I have found little to no information about these two together?
Below template helps to deploy Microsoft Open Source FHIR Server , can be found in the below URL.
https://github.com/Microsoft/fhir-server/blob/master/docs/DefaultDeployment.md
This process creates the instances Cosmos DB, Azure Web App, and source code using an Azure Resource Manager template.
To integrate the Azure FHIR with service bus, we can quickly integrate a FHIR server into our own application using the above template and Azure enables to quickly ingest and manage FHIR datasets in the cloud to track and manage data.

How to copy files from sharepoint into blob storage azure data factory v2 using Odata linked service

Can any one help in understanding procedure of copying excel file from share point to azure Blob storage through Azure Data Factory pipelines. I am struggling while creating Odata linked service. What is service url in odata linked service?
I am using rest apis provided in link here as a service url :https://xxxxx.sharepoint.com/sites/xxx/_api/web/
authentication type: basic
when I test connection I outputs a weird error: here
I have tried the following articles so far.
https://learn.microsoft.com/en-us/azure/data-factory/connector-odata
https://learn.microsoft.com/en-us/sharepoint/dev/sp-add-ins/working-with-folders-and-files-with-rest
Note: when I try these rest api urls from browser they work fine I can download files and so on.
is there any other way of achieving this goal??
Sharepoint online is supported by OData linked service through AAD SPN with Cert authentication type.
A cert using by OData connector can be created and configured by following the below article, which will guide you to connect the cert to an AAD app for invoking SPO Online with an app only access token.
https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azuread

Does Azure SQL support Kerberos?

We are migrating an ASP.NET application onto Azure. Target state selected as Cloud Service Web role to host application component and Database onto Azure SQL/SQL Database. Currently the application is configured onto Kerberos in the source environment. Please let me know if Kerberos can be configured onto Target Environment without any issues.
Are they any specific steps to be done for Kerberos to work?
Yes, but you have to use Azure Active Directory. This method of authentication is in preview atm and only available for Azure SQL v12. There's possibly a lot of steps involved for your scenario from populating your Azure AD to setup your application. Check these references:
Integrating your on-premises identities with Azure Active Directory
Azure SQL Database security guidelines and limitations
Connecting to SQL Database By Using Azure Active Directory Authentication

Pulling details of hosted services in azure programatically

Is there any API or class that helps the user to programmatically pull the details of hosted services in azure if user key-in's subscription id.
I could do the above with references you guys referred.
IS there any possibility to get Subscription details like subscription Name using Windows Azure API's
You would need both subscription id and the management certificate from the user. Once you have these two things, you could use Windows Azure Service Management REST API: http://msdn.microsoft.com/en-us/library/windowsazure/ee460799.aspx to get details about the hosted services.
have a look at the Service Management REST API
for security reasons, it's not going to be as easy as entering a subscription id though.

Resources