18 lines
740 B
Terraform
18 lines
740 B
Terraform
|
|
// Copyright (c) 2020, Oracle and/or its affiliates.
|
||
|
|
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
|
||
|
|
|
||
|
|
# dummy variables
|
||
|
|
# these aren't needed but are declared suppress the terragrunt warnings
|
||
|
|
|
||
|
|
variable "tenancy_ocid" { default = null }
|
||
|
|
variable "user_ocid" { default = null }
|
||
|
|
variable "fingerprint" { default = null }
|
||
|
|
variable "private_key_path" { default = null }
|
||
|
|
variable "region" { default = null }
|
||
|
|
variable "compartment_ocid" { default = null }
|
||
|
|
|
||
|
|
variable "bastion_ssh_private_key_file" { default = null }
|
||
|
|
variable "bastion_ssh_public_key_file" { default = null }
|
||
|
|
variable "remote_ssh_public_key_file" { default = null }
|
||
|
|
variable "remote_ssh_private_key_file" { default = null }
|