Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 437 Bytes

File metadata and controls

22 lines (16 loc) · 437 Bytes

This project was migrated to https://github.com/tsouza/terraform-provider-elasticstack. Thanks!

Terraform Provider for Elastic Stack

Development

  1. Install go 1.16
  2. Clone the repo
  3. Run make install

In your terraform file, use the provider by adding a required_providers block like

terraform {

  required_providers {
    elastic-stack = {
      source  = "github.com/stevewritescode/elastic-stack"
    }
  }
}