Last active
May 17, 2017 18:32
-
-
Save allthingsclowd/e464fdf4abdf9b849a7de3669dc5291c to your computer and use it in GitHub Desktop.
Fujitsu K5 Terraform Example Provider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Openstack Provider | |
provider "openstack" { | |
user_name = "1. Enter K5 Username" | |
password = "2. Enter K5 Password" | |
tenant_name = "3. Enter K5 Target Project Name" | |
domain_name = "4. Enter K5 Contract Name" | |
# 5. Change the "uk-1" region below to match your target region | |
auth_url = "https://identity.uk-1.cloud.global.fujitsu.com/v3" | |
insecure = true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment