0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Terraform】When a network interface is provided, the security groups must be a part of it. のエラーが解消できない場合の対処法

Posted at

はじめに

TerraformでAWSのEC2を構築していた際に、aws_autoscaling_groupブロックで「`When a network interface is provided, the security groups must be a part of it.」のエラーが出ました。
基本的にはこちらで議論されている内容で解消すると思いますが、私の場合は例外で別の箇所が原因でエラーが起きていたので対処法を残しておきます。

対処法

結論としてはlaunch_templateversionLatestに指定することです。
私の場合は最初にapplyしたaws_launch_templateブロックのコードに誤りがあり、正しくない起動テンプレートがDefaultになっていました。

2回目以降terraform applyを実行すると、起動テンプレートが新しいバージョンに書き換えられており、
launch_templateversionは指定しなくとも最新(Latest)を参照すると思い込んでいましたが、Defaultを参照するようで、それが原因でした...。

公式ドキュメントにも記載がありました。

下記のようにversionを指定することでエラーが解消しました!

resource "aws_autoscaling_group" "example" {
  availability_zones = ["us-east-1a"]
  desired_capacity   = 1
  max_size           = 2
  min_size           = 1

  launch_template {
    id      = aws_launch_template.example.id
    version = aws_launch_template.example.latest_version #ここを追加
  }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?