0

我已经迈出了进入 terraform 世界的第一步,我正在尝试在 Joyent triton 上部署基础设施。

设置后,我编写了我的第一个 .tf(嗯,从示例中复制)并点击 terraform apply。一切似乎都很顺利,它不会因错误而中断,但它实际上并没有配置我的容器??我仔细检查了 triton web gui 和“triton 实例列表”。那里空无一物。

有什么想法吗?

provider "triton" {  
  account = "tralala"  
  key_id  = "my-pub-key"  

  url = "https://eu-ams-1.api.joyentcloud.com"  

}  

resource "triton_machine" "test-smartos" {  
  name    = "test-smartos"  
  package = "g4-highcpu-128M"  
  image   = "842e6fa6-6e9b-11e5-8402-1b490459e334"  

  tags {  
    hello = "world"  
    role = "database"  
  }  

  cns {  
    services = ["web", "frontend"]  
  }  

}  
4

0 回答 0