Terraform

{Terraform} ALB/AWS

前提: Terraform、AWS CLIインストール済 -- 1. tfファイル作成 vim main.tf provider "aws" { region = "ap-northeast-1"} variable "server_port" { description = "The port the server will use for HTTP requests" type = number} data "aws_vpc" "vpc0…

{Terraform} RDS/AWS

https://qiita.com/Brutus/items/cd5aab062ea6cebe436chttps://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/db_instance -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew upda…

{Terraform} S3/AWS

https://cloud5.jp/terraform-s3/https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew updatebrew upgrade hashico…

{Terraform} EC2/AWS

https://kacfg.com/terraform-vpc-ec2/ https://registry.terraform.io/providers/hashicorp/aws/3.3.0/docs/resources/instance -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew updatebrew upgrade has…

{Terraform} VPC/AWS

https://y-ohgi.com/introduction-terraform/handson/vpc/https://kacfg.com/terraform-vpc-ec2/https://registry.terraform.io/providers/hashicorp/aws/3.3.0/docs/resources/vpc -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install ha…

{Terraform} RDS/Azure

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/mssql_server https://tech-blog.cloud-config.jp/2019-10-18-creting-azure-sql-database-using-terraformhttps://learn.microsoft.com/ja-jp/azure/azure-sql/database/…

{Terraform} S3/Azure

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_accounthttps://qiita.com/turupon/items/e5cf3699fffc40de3b3c -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraform…

{Terraform} EC2/Azure

https://qiita.com/duelist2020jp/items/6b78adae9a242f3c5935https://learn.microsoft.com/ja-jp/azure/virtual-machines/linux/quick-create-terraformhttps://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/linux_virtual_ma…

{Terraform} VPC/Azure

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs https://qiita.com/duelist2020jp/items/6b78adae9a242f3c5935 -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew updatebrew upg…

{Terraform}RDS/GCP

https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/sql_database_instance -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew updatebrew upgrade hashicorp/tap/terraform…

{Terraform} S3/GCP

https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/storage_buckethttps://cloud.google.com/storage/docs/terraform-create-bucket-upload-object?hl=jahttps://zenn.dev/tatsuyasusukida/articles/how-to-create-a-gcs-bac…

{Terraform} EC2/GCP

https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_instancehttps://zenn.dev/nekoshita/articles/b6eab08861920chttps://dev.classmethod.jp/articles/google-cloud-advent-calendar-2021-18-terraform/ -- 1. mac…

{Terraform} VPC/GCP

-- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew updatebrew upgrade hashicorp/tap/terraformterraform -helpterraform -version -- 2. GCPプロジェクト作成 gcloud initgcloud auth list gcloud --vers…