Questions tagged [infrastructure]

393 questions
4
votes
1 answer

Django: how to serve user-submitted images & thumbnails from separate, multiple servers?

For my Django site, I'd like to: Accept images submitted by users Generate thumbnails from those images Put both the original images and the thumbnails onto separate, multiple servers that are dedicated to serving images I need multiple, separate…
Continuation
  • 12,722
  • 20
  • 82
  • 106
4
votes
3 answers

Set DigitalOcean project in Terraform script

I have terraform script for deploying and provisioning DigitalOcean droplets and I wanna specify custom DO project for this instances instead of default one. I couldn't find any references for project attribute in the documentation for…
Dmitry T.
  • 464
  • 4
  • 12
4
votes
1 answer

'Not a valid output for module' when using output variable with terraform

I'm trying to setup some IaC for a new project using Hashicorp Terraform on AWS. I'm using modules because I want to be able to reuse stuff across multiple environments (staging, prod, dev, etc.) I'm struggling to understand where I have to set an…
Anonymouslemming
  • 518
  • 2
  • 9
  • 16
4
votes
3 answers

If a site has 2 load balancers for redundancy reason, which one should the DNS points to?

If I simply point to both in my DNS record, wouldn't 50% of traffic be in trouble as well?
Henry
  • 32,689
  • 19
  • 120
  • 221
4
votes
1 answer

What are the advantages and the pitfalls of specialized rails hosting services?

Hope my question does not pose as too wide. So I try to frame my question not to get too similar answers to the question of this question. Currently I have deploy my rails application on Linode. The service works fine, the price is reasonable. But…
fifigyuri
  • 5,771
  • 8
  • 30
  • 50
3
votes
2 answers

SharePoint Infrastructure Update Authentication Issues

I've got a SharePoint MOSS 2007 development setup on to which I installed the WSS infrastructure update. Now, whenever I try to access any site collection in my SharePoint farm using IE7 I get a username and password prompt. I enter valid…
Russell Giddings
  • 8,731
  • 5
  • 34
  • 35
3
votes
2 answers

Terraform: Move entire resource group to new Azure subscription

A historically grown project with it's associated infrastructure on Azure must be split up. Luckily, it is well structured and as a result it is pretty clear that we need to move two resource groups and it's affiliated resources to a new Azure…
dmeu
  • 3,842
  • 5
  • 27
  • 43
3
votes
0 answers

External volume monitoring in Digital Ocean

I need to monitor the external volumes that my digital ocean droplets are using however, it seems that digital ocean internal monitoring system does not support monitoring external volumes but only the if the disk utilization is beyond a threshold.…
3
votes
5 answers

Terragrunt doesn't get outputs from a imported source

I've been following terragrunt docs and I end up with a structure like the following one: services/lb services/backend vpc I had set a dependency of vpc in services/lb and in services/backend and it works standalone making terragrunt run-all…
Géminis
  • 123
  • 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
0 answers

How to import random_id with keepers

I have the current config applied elsewhere: resource "random_id" "certificate" { byte_length = 3 prefix = "my-cert-prefix-" keepers = { "domains": "api.domain.com" } } .. and now I need to import to the current state. Running the…
evbruno
  • 186
  • 1
  • 9
3
votes
2 answers

How to let other APIs talk with yours which in return talks to Twitter?

Best title I could come up with, but to clarify, this is the situation: I am working on a short url-like service which lets users 'log in' with their Twitter account and post stuff. Now this service could be included in applications such as…
Gerben Jacobs
  • 4,515
  • 3
  • 34
  • 56
3
votes
1 answer

Infrastructure advice for multi-platform push notifications

we are planning to introduce push applications to our mobile apps (for Android phone and tablet, iPhone, iPad and Blackberry). Every 15 minutes we get a new set of data. This data is stored in an MySQL databse. We would then check if this data…
Cornelius
  • 4,214
  • 3
  • 36
  • 55
3
votes
2 answers

How do I create a new policy on runtime and attach it to a role without hardcoding the policy_document JSON in code resource?

I am trying to create some service users with specific roles. I don't want to hardcode the policy documents for my service role. Example: service-1 required read access to -EC2 instance, Cloudwatch logs and write access to s3 bucket. Service-2 needs…
3
votes
2 answers

AWS Beanstalk - Share Database layer between worker and webserver

I am building some web application using NodeJS. I deployed the application to AWS beanstalk web server and I decoupled some heavy duty tasks, And deployed the heavy tasks to different AWS beanstalk workers, The main web server is executing the…