We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3d45c commit 912183cCopy full SHA for 912183c
examples/database/variables.tf
@@ -40,6 +40,11 @@ variable "ssh_public_key_path" {
40
type = string
41
}
42
43
+variable "ssh_public_key" {
44
+ description = "ssh public key"
45
+ type = string
46
+}
47
+
48
# general oci parameters
49
variable "compartment_id" {
50
description = "compartment id"
@@ -52,6 +57,15 @@ variable "label_prefix" {
52
57
53
58
54
59
60
+variable "tags" {
61
+ description = "a map of tags"
62
+ type = map
63
64
+ default = {
65
+ terraform = true
66
+ }
67
68
55
69
# networking parameters
56
70
71
variable "internet_gateway_enabled" {
0 commit comments