Book book

Bundles chapter resources together so it can be displayed in the docs resource.

Properties

  • Name
    title
    Type
    (string: "")
    Required
    required
    Readonly
    Description

    The title of the book.

  • Name
    chapters
    Type
    ([]chapter: [])
    Required
    required
    Readonly
    Description

    A list containing the chapter resources included in the book.

  • Name
    index
    Type
    (string: "")
    Required
    Readonly
    readonly
    Description

    A JSON index generated from the chapters of the book.


Examples

resource "book" "terraform_basics" {
  title = "Understanding Terraform basics"

  chapters = [
    resource.chapter.introduction,
    resource.chapter.installation,
    resource.chapter.workflow,
    resource.chapter.providers,
    resource.chapter.state,
    resource.chapter.summary
  ]
}