LoginSignup
7
0

More than 3 years have passed since last update.

【Terraform】no matching Route53Zone found

Posted at

Terraform で自動生成されていないホストゾーンを参照している時に出るエラーです。

data "aws_route53_zone" "main" {
  name = "example.com"
}

新規作成する場合は、resource を使う必要があります。

resource "aws_route53_zone" "main" {
  name = "example.com"
}
7
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
7
0