Как использовать terraform с переменными среды.TF файл

Я новичок в Terraform, и я столкнулся с некоторой проблемой при попытке использовать переменные среды.TF файл, я пытался использовать terraform.tfvars / variables.tf.

./terraform apply -var-file="terraform.tfvars"
Failed to load root config module: Error parsing variables.tf: At 54:17: illegal char

что я пропустила?

Версия Terraform:Terraform v0.9.2

главная.tf:

provider "aws" {
  access_key = "${var.aws_access_key}"
  secret_key = "${var.aws_secret_key}"
  region = "${var.aws_region}"
  allowed_account_ids = ["${var.aws_account_id}"]
}

resource "aws_instance" "db" {

  ami           = "ami-49c9295"
  instance_type = "t2.micro"

  tags {
    Name = "test"
  }

  connection {
   user = "ubuntu"
  }

  security_groups = ["sg-ccc943b0"]
  availability_zone = "${var.availability_zone}"
  subnet_id = "${var.subnet_id}"
}

терраформировать.tfvars:

aws_profile = "default"
aws_access_key = "xxxxxx"
aws_secret_key = "xxxxxx"
aws_account_id = "xxxxxx"
key_name = "keyname"
key_path = "/home/user/.ssh/user.pem"
aws_region = "us-east-1"
subnet_id = "subnet-51997e7a"
vpc_security_group_ids = "mysql"
instance_type = "t2.xlarge"
availability_zone = "us-east-1a"

переменные.tf:

variable "key_name" {
    description = "Name of the SSH keypair to use in AWS."
    default     = "keypairname"
}

variable "key_path" {
    description = "Path to the private portion of the SSH key specified."
    default     = "/home/user/.ssh/mypem.pem"
}

variable "aws_region" {
    description = "AWS region to launch servers."
    default     = "us-east-1"
}

variable "aws_access_key" {
    decscription = "AWS Access Key"
    default     = "xxxxxx"
}

variable "aws_secret_key" {
    description = "AWS Secret Key"
    default     = "xxxxxx"
}

variable "aws_account_id" {
    description = "AWS Account ID"
    default     = "xxxxxx"
}

variable "subnet_id" {
    description = "Subnet ID to use in VPC"
    default     = "subnet-51997e7a"
}

variable "vpc_security_group_ids" {
    description = "vpc_security_group_ids"
    default     = "sec"
}

variable "instance_type" {
    description = "Instance type"
    default     = "t2.xlarge"
}

variable "instance_name" {
    description = "Instance Name"
    default     = "test"
}

variable "availability_zone" {
    description = "availability_zone"
    default     = "us-east-1a"
}

variable "aws_amis" {
    default = {
        "us-east-1": "ami-49c9295f",
        "eu-west-1": "ami-49c9295f",
        "us-west-1": "ami-49c9295f",
        "us-west-2": "ami-49c9295f"
    }
}

обновление

после удаления С variables.tf, Я побежал в другой выпуск:

Failed to load root config module: Error loading variables.tf: 1 error(s) occurred:
* variable[aws_access_key]: invalid key: decscription

1 ответов


на aws_amis переменная, используемая в качестве карты поиска, выглядит неправильно отформатированной для меня. Вместо этого он, вероятно, должен иметь формат:

variable "aws_amis" {
    default = {
        us-east-1 = "ami-49c9295f"
        eu-west-1 = "ami-49c9295f"
        us-west-1 = "ami-49c9295f"
        us-west-2 = "ami-49c9295f"
    }
}

как в сторону Terraform будет искать terraform.tfvars файл по умолчанию, так что вы можете удалить -var-file="terraform.tfvars". Вам нужно будет пройти -var-file опция, если вы хотите использовать файл с другим именем (например,prod.tfvars), но для этого его можно опустить.