Skip to content

Instantly share code, notes, and snippets.

View sandor11's full-sized avatar

Sandy Agafonoff sandor11

  • Newcastle, Australia
View GitHub Profile
@sandor11
sandor11 / debug.log
Created February 19, 2019 04:50
Terraform output
aws_elastic_beanstalk_environment.default: Creation complete after 6m31s (ID: e-fnv6d5qa3v)
aws_load_balancer_policy.https: Creating...
load_balancer_name: "" => "awseb-e-f-AWSEBLoa-1953Z41YSDC91"
policy_attribute.#: "" => "1"
policy_attribute.1689615010.name: "" => "Reference-Security-Policy"
policy_attribute.1689615010.value: "" => "ELBSecurityPolicy-2016-08"
policy_name: "" => "hailer-api-sandbox-elb-https-policy"
policy_type_name: "" => "SSLNegotiationPolicyType"
aws_load_balancer_policy.https: Creation complete after 1s (ID: awseb-e-f-AWSEBLoa-1953Z41YSDC91:hailer-api-sandbox-elb-https-policy)
@sandor11
sandor11 / aws_rds_instance_error.txt
Created June 24, 2018 18:07
Error when deploying an rds instance using terraform.
Error: Error applying plan:
1 error(s) occurred:
* module.postgres_rds.aws_db_instance.default: aws_db_instance.default: diffs didn't match during apply. This is a bug with Terraform and should be reported as a GitHub Issue.
Please include the following information in your report:
Terraform Version: 0.11.7
Resource ID: aws_db_instance.default
@sandor11
sandor11 / App.jsx
Last active September 10, 2018 12:49
using font-awesome with React, CSS Modules, Webpack 2 and Hot Module Reloading
import * as React from 'react';
import styles from './app.css';
import { fa, fa_question } from './icons';
console.log(fa);
const App = () => {
return (
<div>
<h1 className={styles.highlight}><span className={[fa, fa_question].join(' ')} /> React with font-awesome... like a boss!</h1>
</div>