Skip to content

Commit

Permalink
Save changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tothegills committed Oct 24, 2023
1 parent 2c6f424 commit b01e0de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions terraform/19b-projectspace/project.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ resource "octopusdeploy_project" "deploy_frontend_project" {
auto_create_release = false
default_guided_failure_mode = "EnvironmentDefault"
default_to_skip_if_already_installed = false
description = "Test project"
description = "Test project in space"
discrete_channel_release = false
is_disabled = false
is_discrete_channel_release = false
is_version_controlled = false
lifecycle_id = data.octopusdeploy_lifecycles.lifecycle_default_lifecycle.lifecycles[0].id
name = "Test"
name = "Test project in space"
project_group_id = octopusdeploy_project_group.project_group_test.id
tenanted_deployment_participation = "Untenanted"
space_id = var.octopus_space_id
space_id = octopusdeploy_space.octopus_project_space_test.id
included_library_variable_sets = []
versioning_strategy {
template = "#{Octopus.Version.LastMajor}.#{Octopus.Version.LastMinor}.#{Octopus.Version.LastPatch}.#{Octopus.Version.NextRevision}"
Expand Down
2 changes: 1 addition & 1 deletion terraform/19b-projectspace/provider_vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ variable "octopus_space_id" {
type = string
nullable = false
sensitive = false
description = "The space ID to populate"
description = "The space ID of the provider"
}
9 changes: 6 additions & 3 deletions terraform/19b-projectspace/space.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
resource "octopusdeploy_space" "project_space" {
name = "Project space"
description = "Test Description"
resource "octopusdeploy_space" "octopus_project_space_test" {
name = "Project Space Test"
is_default = false
is_task_queue_stopped = false
description = "My test space"
space_managers_teams = ["teams-administrators"]
}

0 comments on commit b01e0de

Please sign in to comment.