This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |