Closed3

terraformでEC2を作成し、そのパブリックIPをセキュリティグループで許可する

not75743not75743

要件

  • terraformでec2を作成
  • そのパブリックIPをセキュリティグループのinboundルールとする
  • 1度のapplyで実行出来るようにする
not75743not75743

できた

セキュリティグループでEC2のpublicIPをソースとして使用すればよい

resource "aws_security_group" "test-sg-2" {
.. 略 ..
  ingress {
    from_port   = 80
    to_port     = 80
    protocol    = "tcp"
    cidr_blocks = ["${aws_instance.test-instance-1.public_ip}/32"]
  }
このスクラップは2023/05/25にクローズされました