通过Terraform为GCP VM实例配置静态IP

时间:2019-03-21 18:43:50

标签: google-cloud-platform virtual-machine terraform hashicorp-vault google-provisioning-api

我已经按照@ Claire Bellivier 的建议编辑了main.tf和variable.tf文件,但仍然收到相同的错误,请看看。 Main.tf:

# Path to the authentification to GCP json file
provider "google" {
 credentials = "${file("${var.path_gcp_auth_json_file}")}"
 version     = "~> 2.2"

}

resource =  "google_compute_address" "test-static-ip-address" {
 count  = "${var.gcp_ip_count}"
 name   = "${var.gcp_project_id}-gke-ip-${count.index}"
 region = "${var.region}"
 }

resource "google_compute_instance" "tests" {
 name         = "project-tests"
 project      = "xyz"
 machine_type = "f1-micro"
 zone         = "us-west1-a"

 tags = ["gcp"]

 boot_disk {
 initialize_params {
  image = "ubuntu-os-cloud/ubuntu-1804-lts"
   }
 }

network_interface {
 network = "default"

  access_config {
   nat_ip = "${google_compute_address.test-static-ip-address.address}"

   }
 }

  metadata {
   sshKeys = "local:${file(var.ssh_public_key_filepath)}"
  }

}

resource "google_compute_firewall" "firewalls" {
 name    = "firewalls"
 project = "video-library-228319"
 network = "default"

 allow {
  protocol = "tcp"
  ports = ["80", "443"]
 }

  source_ranges = ["0.0.0.0/0"]
}

Variable.tf

# Path to the authentification to GCP json file
variable "path_gcp_auth_json_file" {
  description = "Path to the authentication JSON file"
 default = "account.json"
}


variable "ssh_public_key_filepath" {
 description = "Filepath to local ssh public key"
 type = "string"

 default = "local.pub"
}

variable "gcp_ip_count" {
 default = "1"
}

variable "gcp_project_id" {
  default = "xyz"
}

variable "region" {
 default ="us-west1-a"
}

错误:未知的根级别密钥:test-static-ip-address 错误:资源'google_compute_instance.tests'配置:变量google_compute_address.test-static-ip-address.address引用的未知资源'google_compute_address.test-static-ip-address

请帮助

2 个答案:

答案 0 :(得分:0)

首先,您可以尝试像这样配置Google Cloud提供商:

# Configure the Google Cloud provider
provider "google" {
  credentials = "${file("${var.path_gcp_auth_json_file}")}"
  version     = "~> 2.2"
}

带有variables.tf文件

# Path to the authentification to GCP json file 
variable "path_gcp_auth_json_file" {
  description = "Path to the authentication JSON file"
  default = "YOUR_PATH_TO_YOUR_JSON_KEY"
}

如果您想快速操作,不要将default的值添加到terraform.tfvars文件中。

第二,您在{资源的末尾错过了一个tests

resource "google_compute_instance" "tests" {
  name         = "project-tests"
  project      = "video-library-228319"
  machine_type = "f1-micro"
  zone         = "us-west1-a"

  tags = ["gcp"]

  boot_disk {
    initialize_params {
      image = "ubuntu-os-cloud/ubuntu-1804-lts"
    }
  }

  network_interface {
    network = "default"

    access_config {
      nat_ip = "${google_compute_address.test-static-ip-address.address}"
    }
  }
}

然后,要生成IP,您需要向Terraform正确声明计算资源:

# Generate IPs
resource "google_compute_address" "test-static-ip-address" {
  count  = "${var.gcp_ip_count}"
  name   = "${var.gcp_project_id}-gke-ip-${count.index}"
  region = "${var.region}"
}

每个"${var.[...]必须参考前面提到的variables.tfcount的值取决于您需要多少个IP。希望会有所帮助。

答案 1 :(得分:0)

您可以复制粘贴此块并删除第二个块吗?

resource "google_compute_address" "test-static-ip-address" {
  count  = "${var.gcp_ip_count}"
  name   = "${var.gcp_project_id}-gke-ip-${count.index}"
  region = "${var.region}"
}

如前所述,=太多,因此无法正常工作。

该模式始终用于main.tf文件:

resource "<kind of GCP Resource>" "<the name of your resources> {
  <list of arguments you need>
  # ...
}

如果需要有关Terraform语法的帮助,可以使用一些技巧,可以使用以下命令进行一些测试:terraform format以获取正确的缩进,而terraform validate以确保代码中的所有内容正确无误

相关问题