diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 21be6d8..dbefaf8 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -7,6 +7,11 @@ terraform { } } +variable epilot_auth { + type = string +} + provider "epilot-product" { # Configuration options + epilot_auth = var.epilot_auth } \ No newline at end of file diff --git a/examples/resources/epilot-product_price/provider.tf b/examples/resources/epilot-product_price/provider.tf new file mode 100644 index 0000000..dbefaf8 --- /dev/null +++ b/examples/resources/epilot-product_price/provider.tf @@ -0,0 +1,17 @@ +terraform { + required_providers { + epilot-product = { + source = "epilot-dev/epilot-product" + version = "0.4.1" + } + } +} + +variable epilot_auth { + type = string +} + +provider "epilot-product" { + # Configuration options + epilot_auth = var.epilot_auth +} \ No newline at end of file diff --git a/examples/resources/epilot-product_product/provider.tf b/examples/resources/epilot-product_product/provider.tf new file mode 100644 index 0000000..dbefaf8 --- /dev/null +++ b/examples/resources/epilot-product_product/provider.tf @@ -0,0 +1,17 @@ +terraform { + required_providers { + epilot-product = { + source = "epilot-dev/epilot-product" + version = "0.4.1" + } + } +} + +variable epilot_auth { + type = string +} + +provider "epilot-product" { + # Configuration options + epilot_auth = var.epilot_auth +} \ No newline at end of file diff --git a/examples/resources/epilot-product_tax/provider.tf b/examples/resources/epilot-product_tax/provider.tf new file mode 100644 index 0000000..dbefaf8 --- /dev/null +++ b/examples/resources/epilot-product_tax/provider.tf @@ -0,0 +1,17 @@ +terraform { + required_providers { + epilot-product = { + source = "epilot-dev/epilot-product" + version = "0.4.1" + } + } +} + +variable epilot_auth { + type = string +} + +provider "epilot-product" { + # Configuration options + epilot_auth = var.epilot_auth +} \ No newline at end of file