Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
AdminTurnedDevOps committed Sep 12, 2020
1 parent e511f31 commit 15b483c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions examples/Azure-Account/main.tf
@@ -1,13 +1,13 @@
provider "octopusdeploy" {
address = "https://mikelevanoctopus.octopus.app"
apikey = "API-KXTJXUROYOQ3B0WERDRD2NKG48"
apikey = var.apiKey
space = "Default"
}

resource "octopusdeploy_azure_service_principal" "Azure" {
name = "AzureTesT"
client_id = "0d1838a2-0f5c-4988-8cf3-e54c2dcedf42"
tenant_id = "2a881dca-3230-4e01-abcb-a1fd235c0981"
subscription_number = "f31cfbfd-37fb-4e3d-a713-7bd6ceb2f7bf"
key = "3489284023FDSFDSFSD"
}
name = "terratesttest"
client_id = var.client_id
tenant_id = var.tenant_id
subscription_number = var.subscription_number
key = var.key
}

0 comments on commit 15b483c

Please sign in to comment.