Skip to content

Instantly share code, notes, and snippets.

config {
module = true
deep_check = true
}
rule "terraform_deprecated_interpolation" {
enabled = true
}
rule "terraform_deprecated_index" {

Keybase proof

I hereby claim:

  • I am gazoakley on github.
  • I am gazoakley (https://keybase.io/gazoakley) on keybase.
  • I have a public key ASDtaUbhX7v3QYLfB-G6lio1V3T7zAvbPWQvSNqXEajBXgo

To claim this, I am signing this object:

@gazoakley
gazoakley / Jenkinsfile
Last active April 16, 2024 12:00
Jenkinsfile for running Terraform
pipeline {
agent any
parameters {
string(name: 'environment', defaultValue: 'default', description: 'Workspace/environment file to use for deployment')
string(name: 'version', defaultValue: '', description: 'Version variable to pass to Terraform')
booleanParam(name: 'autoApprove', defaultValue: false, description: 'Automatically run apply after generating plan?')
}
environment {
@gazoakley
gazoakley / noma.html
Last active May 17, 2016 15:55
NOMA Code Review
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Federation | NOMA</title>
</head>
<body style="font:normal 100% 'Courier', serif;">
<?php echo "We've got ambition"; ?>
<h1>Great Creative Workspace/Multiple Buildings</h1>
<!-- 1GB wifi speeds -->
<?php
$rules = array(
'description' => 'required|naughtywords',
);
Validator::extend('naughtywords', function($attribute, $value, $parameters)
{
return strpos($str, 'a***') === FALSE
});