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 3 years have passed since last update.

クラウド破産を回避するIaC実践ガイドの写経はまりどころメモ

Last updated at Posted at 2020-11-15

この記事について

私の読解力、英語力、あらゆるxxx力の無さに起因し
ハマってしまった事に対するMEMOです

第3章 Terraform入門

  • Terraform v0.13.5 では Enter a valueでリージョン名をSET。

ワイ$ terraform plan
provider.aws.region
  The region where AWS operations will take place. Examples
  are us-east-1, us-west-2, etc.

  Enter a value: ap-northeast-1

  • なるほど。以下でリージョンを都度入力不要なのね。
provider "aws" {
  version = "3.5.0"
  region = "ap-northeast-1"
}
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?