Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Currently, 3 providers are supported. AWS, Azure, and Oracle Cloud Infrastructure. Once you have chosen a provider, you’ll need to change the source of the cloud module. This is in the main.tf file in the root directory. For AWS you’ll change it to “./modules/aws” for Azure it will be “./modules/azure” and for OCI will be “./modules/oci”. If you executing locally or executing against an existing instance you need to change it to be “./modules/local”. If you are using AWS it should look like this:

...

is_windows chooses whether or not this is installing on windows. If you choose this it will work locally. Not recommended since this will install database and FlexDeploy on the same instance.

existing_instance_hostname is the hostname for an existing instance. If this option is set, it will execute against this hostname.

existing_database_hostname is the hostname for a database instance. If this option is set database install will execute against this instance.

admin_user is the admin user for the local install. Only required when executing locally.

...

Code Block
fd_version = "5.6.0.1"
fd_install_directory = "/u02/flexdeploy"
fd_repository_directory = "/u03/flexdeploy/repository"
db_install_directory = "/u04/database"
db_data_directory = "/u05/databasedata"
install_temp_directory = "/tmp/fdinstall"
existing_instance_hostname = "www.example.com"
existing_database_hostname = "database.example.com"

Putting it together

Here are a few examples of all of this put together.

...