Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Terraform

Output Variables will be available as TF_<output key name> (example: TF_public_ip for below)

output "public_ip" {
  value = aws_instance.demo.public_ip
}

AWS Cloud Formation

Output Variables will be available as CF_<output key name> (example: TF_BackupLoadBalancerDNSName for below)

"Outputs" : {
  "BackupLoadBalancerDNSName" : {
    "Description": "The DNSName of the backup load balancer",  
    "Value" : { "Fn::GetAtt" : [ "BackupLoadBalancer", "DNSName" ]},
    "Condition" : "CreateProdResources"
  },
}

Roost EaaS

The following release environment variables are available for release environment.

ROOST_APP_NAME

Name of the Application/Build.

ROOST_ENV_ID

This will set to the environment ID for the application.

ROOST_WORK_DIR

The absolute path to the directory assigned to the application.  

KUBECONFIG

The absolute path to the KubeConfigFile in the application directory.

DOCKER_HOST

Roost Provided Docker-host, for example : docker -H $DOCKER_HOST build.

ROOST_REGISTRY

Roost provided cluster registry for docker images.

ROOST_CLUSTER_IP

This will be set to the cluster IP.  

ROOST_CHANGED_REPO

This will be set to the repository where PR is created.

ROOST_EVENT_TYPE

This will be set to the type of event triggered on the PR created.  

ROOST_PR_NO

This will be set to the PR number.

ROOST_RELEASE_TAG_NAME

This will be set to the ReleaseTagName for the PR.

ROOST_NAMESPACE

This will be set to the changedRepo-PREventType-PRNo.

GIT_COMMIT_ID
This will be the HEAD commit id of your PR branch.

  • No labels