2017-06-12 77 views
-1

我在最後一個版本的Windows上運行,我試圖第一次使用terraform for aws。我創建了一個免費賬戶,一切都準備好了。Terraform aws入門問題

這裏是我的test.tf

provider "aws" { 
    access_key = "XXXXXXXXXXXXXXXXX" // don't worry i change this 
    secret_key = "XXXXXXXXXXXXXXXXXXXXXXXXXX" // this too 
    region = "eu-west-1" #Irlande 
} 

resource "aws_instance" "bastion" { 
    ami = "ami-0d063c6b" 
    instance_type = "t2.micro" 
} 

,當我terraform計劃在此沒有發生:

任何解決這個問題? 在此先感謝 enter image description here

+0

它只是需要一些時間。那之後的輸出是什麼? – Gangaraju

回答

0

我想你運行最新的terraform。

您是先運行terraform init嗎?如果您使用AWS作爲供應商,你應該罰款使用S3作爲後端

看看​​