Skip to content
View lancehampton's full-sized avatar
  • Stigian Consulting LLC
Block or Report

Block or report lancehampton

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Build AWS Security Groups with Terra... Build AWS Security Groups with Terraform and CSV
    1
    # Decode the CSV file into a list of maps
    2
    locals {
    3
      sg_rules = csvdecode(file("./sg_rules.csv"))
    4
      sg_names = toset([for rule in local.sg_rules : rule.name])
    5
    }