Auto Authentication in Embedded link (AWS Opensearch) - amazon-web-services

I have hosted AWS OpenSearch(ELK) and with that Kibana also get hosted. So I have created a dashboard in Kibana where I get the embedded link and insert it to my HTML code. It ask me to login Everytime.
If I host a EC2 instance and install Nginx in it and is it possible if I configure Nginx.conf and provided the access credentials to it so whenever my website gets loaded Visualization inserted in my website through Kibana Embedded Link it should not ask for authentication.

Related

HTTP 500 when accessing Kibana on AWS

I'm using elasticsearch and kibana both managed by AWS, I've configured SAML with ADFS to authenticate my users, but some users login successfully by accessing Kibana, while others login fails and shows the following message:
{"statusCode":500,"error":"Internal Server Error","message":"Internal Error"}
Analyzing the errors in the browser I found something about SameSite, but I believe the SameSite error should happen to everyone.
Is there anything you can do in Kibana to solve this problem?
if this is the aws Elasticsearch service you will need to contact their support. they run forks of Elasticsearch and Kibana and their own plugins to handle security that are not source available or community supported

Firebase projected hosted on AWS?

I am trying to build a multi-site platform using flutter and firebase. We are launching the web app version soon. I wanted to see if it is possible to host the web app using AWS instead of firebase hosting? And if so how do you do it?
Technicaly that is possible. The hosting service from Firebase is enabling you "just" to host your website. If you want you can host it whereever you want (own server or even aws). I don't see any reason why it should not work if you just want to host the side.
I hosted an Angular app using Firebase like backend as a service on AWS, so it's possible. In my case, I used Amazon S3 to upload the binaries generated by my Angular app. To deploy a Flutter App, I suggest you follow this article: Build and deploy a Flutter Web app with Amazon S3 and Bitrise

Website not able to access backend hosted at EC2 after SSL installation through Amazon Certificate Manager

I have hosted my website on EC2 (both front and backend) instance and using SSL provided by Amazon Certificate Manager. I was able to access the route which put a "get" query on the EC2 backend before installing this certificate. However now I am not able to open this route, And the problem it is showing is that - Website is somehow not able to fetch data from the backend.
Also, this works completely fine when I open my website using the IP address of EC2.
I think I must do some changes in the certificate so that it could fetch the data from the backend. Please let me know what should be done.
I have been using React and NodeJS

Linking Google cloud sql instance django website to google domain

I have created django website on Google cloud and its running on sql instance (https://school-website-272007.el.r.appspot.com).
I already have a google domain, and i want to link this to it.
I followed as below:
Created a VM instance on GCP and linked the external ip to my running sql instance.
Created Zone and 'A' / 'CNAME' in the Cloud DNS section.
Added the new DNS settings to Google domain - DNS settings under custom.
(used https://cloud.google.com/dns/docs/quickstart and other youtube links to perform)
But still my google domain is not able to link to the website (https://school-website-272007.el.r.appspot.com)
Can anyone help?
I recommend to use App Engine Custom Domains. With custom domains you can add the domain you may want to redirect to your App Engine app instead of using the appspot link.
While configuring the custom domain, it will tell you which DNS records you have to add to your DNS.

How to deploy wcf service on amazon elasticbeanstalk,

I am using AWS Toolkit to deploy the wcf service on amazon elastic beanstalk, after deployment it shows environment is healthy but when i browse the URL then it redirected to the IIS Server Page, i am unable to access the service url , please let me know how to access the hosted service
Thanks in advance
Follow the standard procedure to deploy a ASP.net project. Here is the link for that : Link
But for you WCF service you need a simple html page at project root. E.g. index.html or default.html. Load balancer need this page to check if the instance is available or not. Without this html page load balancer will consider the instance dead and remove it.