conveyor_project_links (Resource)
Project links resource
Example Usage
resource "conveyor_project" "my_project" {
  name = "my_project"
}
resource "conveyor_project_links" "my_project_link" {
  project_id = conveyor_project.my_project.id
  links = [
    {
      name  = "Snowflake production",
      url   = "https://snowflake.com"
      icon  = "SNOWFLAKE"
      color = "MAGENTA"
    }
  ]
}
Schema
Required
- links(Attributes List) The links to add to the project (see below for nested schema)
- project_id(String) The project id of the project we want to change the links of
Read-Only
- id(String) The id of the resource
Nested Schema for links
Required:
- icon(String) The icon of the link, possible values are: API, AWS, AWS_ATHENA, AWS_CLOUDWATCH, AWS_GLUE, AWS_LAKE_FORMATION, AWS_REDSHIFT, AZURE, DATABRICKS, DATAHUB, DATA_PRODUCT_PORTAL, DOLLAR, EURO, GRAFANA, JIRA, SNOWFLAKE, TRINO
- name(String) The name of the link, must be unique in the list
- url(String) The url the link should point to
Optional:
- color(String) The color of the link, possible values are: BLUE, CYAN, GEEKBLUE, GOLD, GREEN, LIME, MAGENTA, ORANGE, PURPLE, RED, VOLCANO