Skip to content

Commit

Permalink
switching over to space id
Browse files Browse the repository at this point in the history
  • Loading branch information
BobJWalker committed Jan 4, 2022
1 parent 23710fb commit 867eb7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion octopus-samples-instances/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ provider "octopusdeploy" {
# configuration options
address = var.octopus_address
api_key = var.octopus_api_key
space_name = var.octopus_space_name
space_id = var.octopus_space_id
}

resource "octopusdeploy_feed" "github" {
Expand Down
2 changes: 1 addition & 1 deletion octopus-samples-instances/terraform/terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
octopus_address = "#{Project.Octopus.Address}"
octopus_api_key = "#{Project.Api.Key}"
octopus_space_name = "#{Project.Space.Name}"
octopus_space_id = "#{Project.Space.Id}"
octopus_github_username = "#{Project.Github.Username}"
2 changes: 1 addition & 1 deletion octopus-samples-instances/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "octopus_api_key" {
type = string
}

variable "octopus_space_name" {
variable "octopus_space_id" {
type = string
}

Expand Down

0 comments on commit 867eb7d

Please sign in to comment.