Yahoo India Web Search

Search results

  1. Terraform AWS modules · GitHub. 🇺🇦 Collection of Terraform AWS modules supported by the community 🇺🇦. 2.9k followers. https://registry.terraform.io/namespaces/terraform-aws-modules. Sponsor. README.md. Welcome 👋. Additional information for users from Russia and Belarus.

    • Local Paths
    • Terraform Registry
    • GitHub
    • Bitbucket
    • Generic Git Repository
    • Generic Mercurial Repository
    • Http URLs
    • S3 Bucket
    • GCS Bucket
    • Modules in Package sub-directories

    Local path references allow for factoring out portions of a configurationwithin a single source repository. A local path must begin with either ./ or ../ to indicate that a localpath is intended, to distinguish froma module registry address. Local paths are special in that they are not "installed" in the same sensethat other sources are: the files ...

    A module registry is the native way of distributing Terraform modules for useacross multiple configurations, using a Terraform-specific protocol thathas full support for module versioning. Terraform Registryis an index of modulesshared publicly using this protocol. This public registry is the easiest wayto get started with Terraform and find module...

    Terraform will recognize unprefixed github.comURLs and interpret themautomatically as Git repository sources. The above address scheme will clone over HTTPS. To clone over SSH, use thefollowing form: These GitHub schemes are treated as convenient aliases forthe general Git repository address scheme, and sothey obtain credentials in the same way and...

    Terraform will recognize unprefixed bitbucket.orgURLs and interpret themautomatically as BitBucket repositories: This shorthand works only for public repositories, because Terraform mustaccess the BitBucket API to learn if the given repository uses Git or Mercurial. Terraform treats the result either as a Git sourceor a Mercurial sourcedepending on...

    Arbitrary Git repositories can be used by prefixing the address with thespecial git:: prefix. After this prefix, any validGit URLcan be specified to select one of the protocols supported by Git. For example, to use HTTPS or SSH: Terraform installs modules from Git repositories by running git clone, andso it will respect any local Git configuration ...

    You can use arbitrary Mercurial repositories by prefixing the address with thespecial hg:: prefix. After this prefix, any validMercurial URLcan be specified to select one of the protocols supported by Mercurial. Terraform installs modules from Mercurial repositories by running hg clone, andso it will respect any local Mercurial configuration set on...

    When you use an HTTP or HTTPS URL, Terraform will make a GET request tothe given URL, which can return anothersource address. This indirectionallows using HTTP URLs as a sort of "vanity redirect" over a more complicatedmodule source address. Terraform will append an additional query string argument terraform-get=1 tothe given URL before sending the...

    You can use archives stored in S3 as module sources using the special s3::prefix, followed byan S3 bucket object URL. The s3::prefix causes Terraform to use AWS-style authentication whenaccessing the given URL. As a result, this scheme may also work for otherservices that mimic the S3 API, as long as they handle authentication in thesame way as AWS...

    You can use archives stored in Google Cloud Storage as module sources using the special gcs::prefix, followed bya GCS bucket object URL. For example 1. gcs::https://www.googleapis.com/storage/v1/BUCKET_NAME/PATH_TO_MODULE 2. gcs::https://www.googleapis.com/storage/v1/BUCKET_NAME/PATH/TO/module.zip The module installer uses Google Cloud SDK to authe...

    When the source of a module is a version control repository or archive file(generically, a "package"), the module itself may be in a sub-directory relativeto the root of the package. A special double-slash syntax is interpreted by Terraform to indicate thatthe remaining path after that point is a sub-directory within the package.For example: 1. has...

  2. terraform-modules. Star. Terraform can manage existing and popular service providers, such as AWS, as well as custom in-house solutions. It uses configuration files to describe the components necessary to run a single application or your entire datacenter.

  3. Terraform modules for Google Cloud. 1.2k followers. https://opensource.google/projects/cloud-foundation-toolkit. Verified. Pinned. terraform-google-kubernetes-engine Public. Configures opinionated GKE clusters. HCL 1.1k 1.1k. terraform-google-project-factory Public.

  4. Top downloaded github modules. Modules are self-contained packages of Terraform configurations that are managed as a group. Showing 1 - 4 of 122 available modules.

  5. A Terraform module for creating bastion host on AWS EC2 and populate its ~/.ssh/authorized_keys with public keys from bucket. HCL 190 Apache-2.0 118 5 7 Updated on Mar 30, 2023. tf_aws_elasticache_redis Public. [DEPRECATED] Use https://github.com/terraform-aws-modules/terraform-aws-elasticache. HCL 50 MIT 85 1 4 Updated on Jan 20, 2023.

  6. People also ask

  7. The GitHub provider offers multiple ways to authenticate with GitHub API. GitHub CLI. The GitHub provider taps into GitHub CLI authentication, where it picks up the token issued by gh auth login command.