Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs #3

Open
3 tasks
phzietsman opened this issue Jun 4, 2021 · 0 comments
Open
3 tasks

Update docs #3

phzietsman opened this issue Jun 4, 2021 · 0 comments
Assignees
Labels
bug Something isn't working documentation Improvements or additions to documentation
Milestone

Comments

@phzietsman
Copy link
Contributor

Docs are missing the following

  • All the code snippets in the docs have incorrect syntax for terraform 0.12+.
  • Import examples
  • provider usage sample is incorrect, baseurl needs a trailing /

Terraform Version

terraform v0.12+

Affected Resource(s)

All

Terraform Configuration Files

As an example:

data "gocd_job_definition" "test" {
 ...

  tabs = [
    {
      name = "Report"
      path = "report1.html"
    },
  ]

  artifacts = [
    {
      type   = "build"
      source = "web.war"
    },
  ]
}

Should be:

data "gocd_job_definition" "test" {
 ...

  tabs {
      name = "Report"
      path = "report1.html"
  }

  artifacts {
      type   = "build"
      source = "web.war"
  }
}
@phzietsman phzietsman added bug Something isn't working documentation Improvements or additions to documentation labels Jun 4, 2021
@phzietsman phzietsman added this to the 2021.07 milestone Jun 4, 2021
@phzietsman phzietsman self-assigned this Jun 4, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant