Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to source a terraform module from github like so:

module "example" {
  source = "https://github.com/cloudposse/terraform-example-module.git?ref=master"
  example = "Hello world!"
}

When I run terraform init, I get the following error:

Error: Failed to download module

Could not download module "example" (main.tf:6) source code from
"https://github.com/cloudposse/terraform-example-module.git?ref=master": error
downloading
'https://github.com/cloudposse/terraform-example-module.git?ref=master': no
source URL was returned

I confrimed that the repo does infact exist.. what am I missing?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

There shouldn't be https:// at the beginning. So it should be:

module "example" {
  source  = "github.com/cloudposse/terraform-example-module.git?ref=master"
  example = "Hello world!"
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...