Skip to content

Commit 912183c

Browse files
authored
Update variables.tf (#73)
needed to run example
1 parent be3d45c commit 912183c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

examples/database/variables.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ variable "ssh_public_key_path" {
4040
type = string
4141
}
4242

43+
variable "ssh_public_key" {
44+
description = "ssh public key"
45+
type = string
46+
}
47+
4348
# general oci parameters
4449
variable "compartment_id" {
4550
description = "compartment id"
@@ -52,6 +57,15 @@ variable "label_prefix" {
5257
type = string
5358
}
5459

60+
variable "tags" {
61+
description = "a map of tags"
62+
type = map
63+
64+
default = {
65+
terraform = true
66+
}
67+
}
68+
5569
# networking parameters
5670

5771
variable "internet_gateway_enabled" {

0 commit comments

Comments
 (0)