Skip to content
View ImIOImI's full-sized avatar
Block or Report

Block or report ImIOImI

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. AWS Cloudshell init script AWS Cloudshell init script
    1
    #!/bin/sh
    2
    defaultUser="ImIOImI"
    3
    defaultEmail="troy.knapp@gmail.com"
    4
    
                  
    5
    rsaKeyFile=/home/cloudshell-user/.ssh/id_rsa
  2. Simple Terraform 12 Map Example Simple Terraform 12 Map Example
    1
    ####Simple Map example####
    2
    output "out" {
    3
      value = var.project-map[var.environment]
    4
    }
    5
    
                  
  3. Delete Terraform State By Simple Pat... Delete Terraform State By Simple Pattern
    1
    param (
    2
        [Parameter(Mandatory=$true)][string]$Pattern = "*"
    3
    )
    4
    $currentState = terraform state list
    5
    
                  
  4. Add Terraform workspace to command p... Add Terraform workspace to command prompt when using Posh-Git
    1
    $GitPromptSettings.DefaultPromptPrefix.Text = '$(if(Test-Path -Path ".terraform"){terraform workspace show}) '
    2
    $GitPromptSettings.DefaultPromptPrefix.ForegroundColor = [ConsoleColor]::Magenta
  5. cheat-sheets cheat-sheets Public

    Collection of cheat sheets for stuff I use all the time.

  6. Simple Powershell script for switchi... Simple Powershell script for switching a named profile into the default profile
    1
    Param(
    2
        [Parameter(Mandatory = $false)][string]$profile = ""
    3
    )
    4
    
                  
    5
    if ($profile -eq "")