We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5f3f21 commit e4e4a16Copy full SHA for e4e4a16
acceptance/pactflow/pactflow.tf
@@ -1,3 +1,19 @@
1
+# Required as of Terraform version 0.0.13
2
+terraform {
3
+ required_version = ">= 0.13"
4
+ required_providers {
5
+ pact = {
6
+ source = "github.com/pactflow/pact"
7
+ versions = ["0.0.1"]
8
+ }
9
10
+}
11
+
12
+provider "pact" {
13
+ host = "https://tf-acceptance.pact.dius.com.au"
14
+ access_token = var.api_token
15
16
17
variable "api_token" {
18
type = string
19
}
@@ -6,10 +22,6 @@ variable "build_number" {
22
23
24
-provider "pact" {
- host = "https://tf-acceptance.pact.dius.com.au"
- access_token = var.api_token
-}
25
26
resource "pact_pacticipant" "AdminUI" {
27
name = "AdminUI${var.build_number}"
0 commit comments