-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFE.rc
53 lines (46 loc) · 2.28 KB
/
FE.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#/bin/bash
# To use Flexible Engine Openstack Orange Cloud you need to authenticate against the Identity
# service named keystone, which returns a *Token* and *Service Catalog*.
# The catalog contains the endpoints for all services the user/tenant has
# access to - such as Compute, Image Service, Identity, Object Storage, Block
# Storage, and Networking (code-named nova, glance, keystone, swift,
# cinder, and neutron).
# You can find all the regions and endpoints on the online documentation!
# https://docs.prod-cloud-ocb.orange-business.com/en-us/endpoint/index.html
#
# *NOTE*: Using the 2.0 *Identity API* does not necessarily mean any other
# OpenStack API is version 2.0. For example, your cloud provider may implement
# Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is
# only for the Identity API served through keystone.
export OS_AUTH_URL=https://iam.eu-west-0.prod-cloud-ocb.orange-business.com/v3
export AUTH_URL=https://iam.eu-west-0.prod-cloud-ocb.orange-business.com/v3
#
# With the addition of Keystone we have standardized on the term *tenant*
# as the entity that owns the resources.
export OS_USER_DOMAIN_NAME=<YOUR-DOMAIN-NAME>
export OS_PROJECT_NAME=<your-project-name>
# In addition to the owning entity (tenant), OpenStack stores the entity
# performing the action as the *user*.
export OS_USERNAME="<your-username>"
export OS_ACCESS_KEY="<YOUR-ACCES-KEY>"
echo "Please enter your Secret Key: "
read -sr OS_SECRET_KEY_INPUT
export OS_SECRET_KEY=$OS_SECRET_KEY_INPUT
#If you need some AWS env variable for third party tools (s3cmd, terraform s3 backend)
export AWS_ACCESS_KEY_ID="${OS_ACCESS_KEY}"
export AWS_SECRET_ACCESS_KEY="${OS_SECRET_KEY}"
# With Keystone you pass the keystone password.
echo "Please enter your Flexible Engine API Password: "
read -sr OS_PASSWORD_INPUT
export OS_PASSWORD=$OS_PASSWORD_INPUT
export OS_IDENTITY_API_VERSION=3
export OS_COMPUTE_API_VERSION=2
export OS_IMAGE_API_VERSION=2
export OS_NETWORK_API_VERSION=2
# If your configuration has multiple regions, we set that information here.
# On Flexible Engine you have to set the region you want to use.
export OS_REGION_NAME="eu-west-0"
#export OS_REGION_NAME="as-south-0"
# ...
# Don't leave a blank variable, unset it if it was empty
if [ -z "$OS_REGION_NAME" ]; then unset OS_REGION_NAME; fi