Questions tagged [iaas]

IAAS (Infrastructure as a Service) is a provision model in which an organization outsources the equipment used to support operations, including storage, hardware, servers and networking components. The service provider owns the equipment and is responsible for housing, running and maintaining it.

In the most basic cloud-service model, providers of IaaS offer computers - physical or (more often) virtual machines - and other resources. IaaS clouds often offer additional resources such as a virtual-machine disk image library, raw (block) and file-based storage, firewalls, load balancers, IP addresses, virtual local area networks (VLANs), and software bundles. IaaS-cloud providers supply these resources on-demand from their large pools installed in data centers. For wide-area connectivity, customers can use either the Internet or carrier clouds (dedicated virtual private networks).

To deploy their applications, cloud users install operating-system images and their application software on the cloud infrastructure. In this model, the cloud user patches and maintains the operating systems and the application software. Cloud providers typically bill IaaS services on a utility computing basis[citation needed]: cost reflects the amount of resources allocated and consumed.

Examples of IaaS providers include: Amazon EC2, Azure Services Platform, DynDNS, Google Compute Engine, HP Cloud, iland, Joyent, LeaseWeb, Linode, NaviSite, Oracle Infrastructure as a Service, Rackspace Cloud, ReadySpace Cloud Services, ReliaCloud, SAVVIS, SingleHop, and Terremark

190 questions
4
votes
1 answer

IaaS Azure Diagnostics won't start. Missing assemblies

When I try to enable Iaas Azure Diagnostics on my VM, I encounter the following errors. I was able to track down the local log files and found these entries. How do you repair the Azure Diagnostics extension, without recycling the…
bartonm
  • 1,600
  • 3
  • 18
  • 30
4
votes
4 answers

How to install Redis Sentinel as a Windows service?

I am trying to set up a redis sentinel as a windows service on a Azure VM (IaaS). I am using the MS OpenTech port of Redis for Windows and running the following command... redis-server --service-install --service-name rdsent redis.sentinel.conf…
Gautam D
  • 119
  • 1
  • 2
  • 9
3
votes
1 answer

Vault - Assign multiple aliases for one identity group

I've been trying to assign multiple group aliases, meaning, multiple AD groups in our company, into one identity group. So far we've had an identity group for each alias, and we realized that doesn't make sense, as they all carry the same…
3
votes
2 answers

Convert Terraform to ARM

Is it possible to compile a Terraform script into an ARM template? I assume this should be somehow possible, since I think Terraform is internally doing exactly this, when deploying IaaS to Azure.
eztam
  • 3,443
  • 7
  • 36
  • 54
3
votes
1 answer

Faulting module name: clr.dll, version: 4.6.1055.0, time stamp: 0x563c12de

Trying to launch Iaas IIS hosted asp.net application. getting below error. any idea please? Faulting application name: w3wp.exe, version: 8.5.9600.16384, time stamp: 0x5215df96 Faulting module name: clr.dll, version: 4.6.1055.0, time stamp:…
3
votes
1 answer

Successful cloud computing migrations

I'm looking for examples of successful cloud computing migrations with any of these attributes: High traffic In depth explanation of what they did: Did the go with an internal cloud, IaaS, PaaS, or some hybrid approach? Did they have to rewrite…
Abdullah Jibaly
  • 53,220
  • 42
  • 124
  • 197
3
votes
3 answers

Recommendations for Cloud Hosting Service for Socket.io

I'm currently evaluating the different cloud service providers to determine which is best for the use of NodeJS backend with Socket.IO implementation that is speedy. While i know that is really dependent on the physical location of their servers, i…
kenwjj
  • 341
  • 1
  • 7
  • 21
3
votes
3 answers

Can Windows Azure IaaS virtual machines persist memory state?

I don't quite get to which extent Azure IaaS virtual machines (not VM roles) can persist state. Clearly files on local disks are preserved. Is memory state also preserved? Can I "suspend" a VM like in VMWare and then resume it with all programs…
sharptooth
  • 167,383
  • 100
  • 513
  • 979
2
votes
1 answer

How to call parent resource output in child module in terraform

I am creating a below ABC -- ecs.tf (gives me cluster id) Content of ecs.tf: resource "aws_ecs_cluster" "first_cluster" { name = "firstCluster" capacity_providers = ["FARGATE"] default_capacity_provider_strategy { capacity_provider =…
2
votes
3 answers

Failed to create openStack instance

I'm new to open stack , and when I try to create instance it gives me this error: [Error : Exceeded maximum number of retries. Exhausted all hosts available for retrying build failures for instance 57100c2f-a290-4165-b4c0-ba2202cfb728.]
Samaha Oum
  • 23
  • 1
  • 5
2
votes
0 answers

Terraform upgrade from 0.11 to 0.12 getting error Invalid value for "lists" parameter in join function

I am upgrading our code from Terraform 0.11 to 0.12.29. my older code that works on TF 0.11 my.tf: data "templ_file" "dep" { template = "$${input}" vars { input = "${join(",", var.abc)}" } } Where abc is defined as: variable…
2
votes
1 answer

Curly brace is missing in a json, while saving the json in azurestorage blob using rest api

I have tried to save a json which has the following json with a special character 'ø'. The json is {"username":"Jøhn"}. I have used this api to save the json in azure blob ==> …
2
votes
1 answer

Terraform resource github_repository_webhook requires GitHub organization to be set on the provider

I am Making a CI/CD pipeline with terraform AWS. This pipeline works 100 percent perfect if I don't configure webhooks rather than goes with default option i.e AWS CodePipeline which periodically checks for changes in github. When I configure…
2
votes
0 answers

Azure VM custom script extension - failing randomly

I have been troubleshooting the CustomScriptExtension using Terraform I am using it to deploy and run a powershell script that works 80% of the times I deploy. I have tested 48 VM deployments. When it fails on say VM2 for example the next time I run…
RuSs
  • 1,725
  • 1
  • 29
  • 47
2
votes
1 answer

Terraform - list of string required (cidr_blocks in AWS)

In Terraform I'm having problems imputing a list that will be stored in a variable. While executing terraform plan, I get asked for a cidr_blocks (which should be a list of strings). I tried to type several "forms" that might represent a list of…
JonyD
  • 1,237
  • 3
  • 21
  • 34
1
2
3
12 13