エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
【tfsec】Terraformの静的セキュリティスキャンを行ってみよう! | DevelopersIO
module "vpc" { source = "terraform-aws-modules/vpc/aws" # source = "../modules/vpc" version = "3.... module "vpc" { source = "terraform-aws-modules/vpc/aws" # source = "../modules/vpc" version = "3.12.0" # insert the 23 required variables here cidr = "10.0.0.0/16" name = "terraform-reintroduction" public_subnets = ["10.0.0.0/24", "10.0.1.0/24"] azs = ["ap-northeast-1a", "ap-northeast-1c"] } resource "aws_security_group" "allow_tls" { name = "allow_tls" description = "Allow TLS inbound traffic" vp




2022/02/21 リンク