FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Terraform modules to write once and reuse forever
NewsDevOps

Terraform modules to write once and reuse forever

via Dev.to DevOpsYash3h ago

Terraform modules to write once and reuse forever Module 1: Standard ALB resource "aws_lb" "main" { name = var . name ; load_balancer_type = "application" security_groups = [ aws_security_group . alb . id ] ; subnets = var . public_subnet_ids drop_invalid_header_fields = true ; enable_deletion_protection = true } resource "aws_lb_listener" "https" { load_balancer_arn = aws_lb . main . arn ; port = 443 ; protocol = "HTTPS" ssl_policy = "ELBSecurityPolicy-TLS13-1-2-2021-06" ; certificate_arn = var . certificate_arn default_action { type = "fixed-response" fixed_response { content_type = "text/plain" ; status_code = "404" } } } resource "aws_lb_listener" "redirect" { load_balancer_arn = aws_lb . main . arn ; port = 80 ; protocol = "HTTP" default_action { type = "redirect" redirect { port = "443" ; protocol = "HTTPS" ; status_code = "HTTP_301" } } } output "arn_suffix" { value = aws_lb . main . arn_suffix } output "https_listener" { value = aws_lb_listener . https . arn } Module 2: ECS IAM

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
0 views

Related Articles

News

The .NET GC Secrets That Only Runtime Engineers Talk About

Medium Programming • 25m ago

9 useful car gadgets I'd pay full price for (but some are on sale now)
News

9 useful car gadgets I'd pay full price for (but some are on sale now)

ZDNet • 30m ago

The best phone deals from T-Mobile, Verizon, AT&T and other carriers right now
News

The best phone deals from T-Mobile, Verizon, AT&T and other carriers right now

ZDNet • 30m ago

Creating My First App (All the Mistakes I Made So You Don’t Have To)
News

Creating My First App (All the Mistakes I Made So You Don’t Have To)

Medium Programming • 39m ago

EN – 2/14 The Three Pillars of Grow Fondation: Incubator, Data Center, Token
News

EN – 2/14 The Three Pillars of Grow Fondation: Incubator, Data Center, Token

Medium Programming • 1h ago

Discover More Articles