mirror of https://github.com/status-im/consul.git
20 lines
331 B
Go
20 lines
331 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package tfgen
|
|
|
|
const terraformPrelude = `provider "docker" {
|
|
host = "unix:///var/run/docker.sock"
|
|
}
|
|
|
|
terraform {
|
|
required_providers {
|
|
docker = {
|
|
source = "kreuzwerker/docker"
|
|
version = "~> 2.0"
|
|
}
|
|
}
|
|
required_version = ">= 0.13"
|
|
}
|
|
`
|