Skip to content

Commit 401e9dd

Browse files
Terraform Team AutomationMonica Joshi
authored andcommitted
Added - Support for create_task API for Rest task
1 parent e691331 commit 401e9dd

13 files changed

+16638
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "region" {
5+
default = "us-ashburn-1"
6+
}
7+
8+
variable "tenancy_ocid" {
9+
default = ""
10+
}
11+
12+
variable "user_ocid" {
13+
default = ""
14+
}
15+
16+
variable "fingerprint" {
17+
default = ""
18+
}
19+
20+
variable "private_key_path" {
21+
default = ""
22+
}
23+
24+
25+
26+
provider "oci" {
27+
region = var.region
28+
tenancy_ocid = var.tenancy_ocid
29+
user_ocid = var.user_ocid
30+
fingerprint = var.fingerprint
31+
private_key_path = var.private_key_path
32+
}

0 commit comments

Comments
 (0)