dcos-install-private-agents-remote-exec
dcos-terraform/dcos-install-private-agents-remote-exec/null
DC/OS private agent remote exec install ============ This module install DC/OS on private agents with remote exec via SSH EXAMPLE ------- ``hcl module "dcos-private-agents-install" { source = "terraform-dcos/dcos-install-private-agents-remote-exec/null" version = "~> 0.1.0" bootstrap_private_ip = "${module.dcos-infrastructure.bootstrap.private_ip}" bootstrap_port = "80" os_user = "${module.dcos-infrastructure.private_agents.os_user}" dcos_install_mode = "install" dcos_version = "${var.dcos_version}" private_agent_ips = ["${module.dcos-infrastructure.private_agents.public_ips}"] num_private_agents = "2" } ` Inputs | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | bootstrap_port | TCP port bootstrap nginx is listening on. Used to build the boo
| Name | Type | Description | Default |
|---|---|---|---|
| private_agent_ips | list | List of private agent IPs to SSH to | required |
| bootstrap_private_ip | string | Private IP bootstrap nginx is listening on. Used to build the bootstrap URL. | required |
| num_private_agents | string | Specify the amount of private agents. These agents will provide your main resour | required |
| dcos_install_mode | string | Type of command to execute. Options: install or upgrade | "install" |
| dcos_skip_checks | string | Upgrade option: Used to skip all dcos checks that may block an upgrade if any DC | false |
| trigger | list | Triggers for null resource | [] |
| depends_on | list | Modules are missing the depends_on feature. Faking this feature with input and o | [] |
| bootstrap_port | string | TCP port bootstrap nginx is listening on. Used to build the bootstrap URL. | "80" |
| os_user | string | The OS user to be used | "centos" |
| dcos_version | string | Specifies which DC/OS version instruction to use. Options: 1.9.0, 1.8.8, etc. Se | "1.11.3" |
depends — Modules are missing the depends_on feature. Faking this feature with input and output variables