(1) ある日、yamaya さんという怖い方がこのツイートを投稿する。
This file contains hidden or 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
//==================================================// | |
// 参考 | |
// http://qiita.com/shiozaki/items/0e42e101b7483df13c8f | |
// | |
// 使い方 | |
// <span class="gekiyasu">19800</span> | |
// <script src="gekiyasu.js"></script> | |
// <script> | |
// gekiyasu.initialize(); | |
// </script> |
This file contains hidden or 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
#### first class expresssion | |
variable "ami" {} | |
resource "aws_instance" "example" { | |
ami = var.ami | |
} | |
#### list & map | |
resource "aws_instance" "example" { | |
vpc_security_group_ids = var.security_group_id != "" ? [var.security_group_id] : [] | |
} |
OlderNewer