Skip to content

Commit 773e0d5

Browse files
committed
Add copyright message to examples that were missing them.
1 parent 6122ad1 commit 773e0d5

File tree

22 files changed

+44
-0
lines changed

22 files changed

+44
-0
lines changed

docs/examples/autoscaling/compute.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
resource "oci_core_instance" "TFInstance" {
24
availability_domain = "${lookup(data.oci_identity_availability_domains.ADs.availability_domains[var.availability_domain - 1],"name")}"
35
compartment_id = "${var.compartment_ocid}"

docs/examples/autoscaling/datasources.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
# Gets a list of Availability Domains
24
data "oci_identity_availability_domains" "ADs" {
35
compartment_id = "${var.tenancy_ocid}"

docs/examples/autoscaling/network.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
resource "oci_core_virtual_network" "ExampleVCN" {
24
cidr_block = "10.1.0.0/16"
35
compartment_id = "${var.compartment_ocid}"

docs/examples/autoscaling/provider.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
provider "oci" {
24
tenancy_ocid = "${var.tenancy_ocid}"
35
user_ocid = "${var.user_ocid}"

docs/examples/autoscaling/variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
variable "tenancy_ocid" {}
24
variable "user_ocid" {}
35
variable "fingerprint" {}

docs/examples/health_checks/http_monitor/http_monitor.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
variable "tenancy_ocid" {}
24
variable "user_ocid" {}
35
variable "fingerprint" {}

docs/examples/health_checks/http_monitor_probe_results/http_probe_result.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
variable "tenancy_ocid" {}
24
variable "user_ocid" {}
35
variable "fingerprint" {}

docs/examples/health_checks/on_demand_http_probe/on_demand_http_probe.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
variable "tenancy_ocid" {}
24
variable "user_ocid" {}
35
variable "fingerprint" {}

docs/examples/health_checks/on_demand_ping_probe/on_demand_ping_probe.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
variable "tenancy_ocid" {}
24
variable "user_ocid" {}
35
variable "fingerprint" {}

docs/examples/health_checks/ping_monitor/ping_monitor.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
13
variable "tenancy_ocid" {}
24
variable "user_ocid" {}
35
variable "fingerprint" {}

0 commit comments

Comments
 (0)