# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: MIT-0 variable "env" { description = "Depolyment environment" default = "" } variable "project_name" { description = "Project name" default = "" } variable "AWS_ID" { description = "AWS ID" default = "" } variable "project_id" { description = "Project ID" default = "" } variable "region" { description = "AWS region" default = "" } variable "repository_branch" { description = "Repository branch to connect to" default = "master" } variable "repository_owner" { description = "Gitlab repository owner" default = "" } variable "build_repository_name" { description = "Gitlab repository name" default = "" } variable "deploy_repository_name" { description = "Gitlab repository name" default = "" } variable "artifact_bucket" { description = "S3 Bucket for storing artifacts" default = "" } variable "GitLabServer" { description = "The path to the GitLab Server, e.g. https://gitlab.com, https://test.gitlab.com, http://10.0.0.1" default = "https://gitlab.com" } variable "RepositoryBaseUrl" { description = "The base path to the GitLab account to create the repository within. e.g. https://gitlab.com/" default = "https://gitlab.com/" } variable "SecretName" { description = "Token for GitLab" default = "gitlab_token" } variable "GitLabGroupID" { description = "The ID of the group in GitLab to create the repositories in. Enter \"None\" if using the root group." default = "None" }