Questions tagged [infrastructure]

393 questions
2
votes
1 answer

Azure Role Failure Notifications

I have an Azure Cloud Service Load Balanced over 2 Roles with a recent addition of a custom LoadBalancerProbe. The issue I am having is that in my site I have a threaded task that was throwing unhandled exceptions, 5 of these unhandled exceptions…
2
votes
1 answer

Implementing blob storage

I'm looking for a way to implement (provide) blob storage for an application I'm building. What I need is the following: Access is done using simple keys (like primary keys; I don't need a hierarchy); Blobs with sizes will be from 1KiB to 1GiB.…
2
votes
4 answers

how to make Int1024

how to declare int1024 in C#? i can use VB or C++ Too. Regards Behrooz
Behrooz
  • 1,696
  • 2
  • 32
  • 54
2
votes
1 answer

How to set up IIS request mirroring to staging environment?

I would like to have all HTTP requests made to my production environment be also automatically made against my testing environment. E.g. if anything makes a request to http://production.site.example.com/api/users/12345 then I want the same request…
Sander
  • 25,685
  • 3
  • 53
  • 85
2
votes
1 answer

VMWare infrastructure web access, hyperlinks between vmware servers

We are using multiple vmware servers, that each host several vmware images/instances. Each department uses its own vmware server. The vmware instances are always accessed through the "VMWare infrastructure web access" web page from the console tab…
bvdb
  • 22,839
  • 10
  • 110
  • 123
2
votes
2 answers

SAML (Security Assertion Markup Language) - Can this be implemented via network infrastructure

I've possible got to implement SAML for a couple of sites we have and I was wondering if this kind of requirement can be implemented in infrastructure technologies like Active Directory or do I have to implement the solution in application…
AwkwardCoder
  • 24,893
  • 27
  • 82
  • 152
2
votes
2 answers

Managing git across multiple sites

The scenario we have is that our organization is located in a few geographical locations. I would like to setup a git central server so each of the distributed teams can push their changes into it and share with the rest of the teams. I am wondering…
lysergic-acid
  • 19,570
  • 21
  • 109
  • 218
1
vote
1 answer

How fast is data transfer between instances in Windows Azure?

Suppose I create a Windows Azure application that consists of multiple instances talking to each other by starting a server on each instance and exchanging big chunks of data. What data transfer speed should I expect from the underlying…
sharptooth
  • 167,383
  • 100
  • 513
  • 979
1
vote
4 answers

Scaling for TYPO3 site

I'm asked by a customer to deliver a TYPO3 based website with the following parameters: small amount of content (about 50 pages) very little change frequency average availability about 95%/day 20% of pages are restricted, only available after…
1
vote
1 answer

Add Block to Ressource if variable is set

currently I'm writing a Terraform to create an AWS Elastic Container Service and I am struggeling a bit with the container_definitions. So this is my code: resource "aws_ecs_task_definition" "task" { family =…
1
vote
0 answers

How to check VM is up and running & IP address after creating it using PowerShell commands with Type 1 Hypervisor and no GUI

we have a physical machine with Type 1 Hypervisor and no GUI, we are trying to create a new VM using the below Powershell commands $VMName = "MyTestVm" $VMPath = "E:\Virtual-Machine" $VHDSizeGB = 200 $SwitchName = "MyTestVmSwitch" …
1
vote
1 answer

How to implement Firebase into a microservice architecture

I already have an existing microservice app. Now I want to add a simple database to simply grab contact information during events, this information will be edited once with a boolean to define if a user has been contacted yet or not. I was thinking…
1
vote
1 answer

How to add custom domain to azure function app using bicep templates

At the moment using the default domain for azure function app. How can I use a custom domain? Is there a parameter for functionApp to do this? Bicep template to deploy azure function app. param name string = 'Hamid' param location string = 'UK…
Hamid
  • 103
  • 9
1
vote
2 answers

Azure bicep templates to create fuction app giving the following error " LinuxFxVersion has an invalid value."

Am trying to use azure bicep templates to create a python function app however, getting the following error: " LinuxFxVersion has an invalid value." I used linuxFx version instead of python version as this is used in the following…
Muhammad Pathan
  • 429
  • 3
  • 12
1
vote
1 answer

Google Anthos vs Terraform

For research, I'm currently looking into Anthos and Terraform and I'm struggling to see a very big difference. As far as I understood Terraform: is used to automate and manage provisioning infrastructure out of / as Code. works via API / CLI For…