Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove default value for required variable. #2

Merged
merged 1 commit into from
Oct 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,10 @@ variable "skip_source_dest_check" {

variable "subnet_ocid" {
description = "The OCID of the subnet to create the VNIC in. "
default = ""
}

variable "ssh_authorized_keys" {
description = "Public SSH keys path to be included in the ~/.ssh/authorized_keys file for the default user on the instance. "
default = ""
}

variable "user_data" {
Expand All @@ -81,7 +79,6 @@ variable "user_data" {

variable "source_ocid" {
description = "The OCID of an image or a boot volume to use, depending on the value of source_type. "
default = ""
}

variable "source_type" {
Expand Down