Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request]: Support Icon - with Id and Color Properties #851

Open
johnbailey-transactcampus opened this issue Jan 9, 2025 · 0 comments

Comments

@johnbailey-transactcampus

Is your feature request related to a problem? Please describe.
No. It's related to a newer feature in OctopusDeploy Projects. The feature allows logos, which is a combination of icons and background colours.

Describe the solution you'd like
I would like to have a block in terraform that would statically apply this values to each project, so that we don't have to perform the change[s] manually.

The block could look like:

resource "octopusdeploy_deployment_process" "my-cool-process" {
      project_id = var.my_cool_project_id
      icon {
            id = "rocket"
            color = "#5E2EA2"
      }
      ... ... ...
}

or

resource "octopusdeploy_deployment_process" "my-cool-process" {
      project_id = var.my_cool_project_id
      icon_id = "rocket"
      icon_color = "#5E2EA2"
      ... ... ...
}

Describe alternatives you've considered
N/A - No alternatives exist (that I'm aware of).

Additional context
Web UI Menu:

image

Properties modified via Web:

image

"Icon": {
      "Id": "rocket",
      "Color": "#5E2EA2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant