Skip to main content
  1. Docs
  2. Reference
  3. REST API Docs
  4. Schema
  5. TerraformModuleVersion

TerraformModuleVersion

    TerraformModule describes a Terraform module hosted in the Pulumi Cloud registry.

    Properties

    • name string required
      The module name.
    • version string required
      The semantic version of this module version.
    • publisher string required
      The organization or user that published the module (the Terraform namespace).
    • sha256 string required
      The SHA-256 checksum of the module tarball.
    • sizeBytes integer required
      The size of the module tarball in bytes.
    • source string required
      The source identifier indicating where the module originates from (e.g. ‘private’).
    • readme string optional
      The module README, rendered client-side. Absent when the module ships no README.
    • system string required
      The Terraform provider system the module targets (e.g. ‘aws’, ‘azurerm’, ‘google’).
    • description string optional
      A free-form text description of the module’s purpose.
    • inputs array[TerraformModuleInput] required
      The input variables declared by the root module.
    • name string required
      The variable name.
    • type string optional
      The declared Terraform type of the variable, if any.
    • description string optional
      The variable description, if any.
    • defaultValue string optional
      The default value rendered as a string, if the variable declares one.
    • required boolean required
      Whether the variable is required (declares no default).
    • sensitive boolean required
      Whether the variable is marked sensitive.
    • latestVersion string required
      The latest published semantic version of the module.
    • outputs array[TerraformModuleOutput] required
      The outputs declared by the root module.
    • name string required
      The output name.
    • description string optional
      The output description, if any.
    • sensitive boolean required
      Whether the output is marked sensitive.
    • providerRequirements array[TerraformModuleProviderRequirement] required
      The provider requirements declared by the root module.
    • name string required
      The local provider name (e.g. ‘aws’).
    • source string optional
      The provider source address (e.g. ‘hashicorp/aws’), if declared.
    • versionConstraint string optional
      The version constraint declared for the provider, if any.
    • updatedAt string required
      The timestamp when the module was last updated.
    • url string required
      The canonical registry:// URL identifying the module.