Skip to content

Commit b3befee

Browse files
authored
Update Oracle Copyright notices for 2019 (#703)
Update Oracle Copyright notices for 2019
1 parent 12f6379 commit b3befee

File tree

699 files changed

+903
-511
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

699 files changed

+903
-511
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions

GNUmakefile

Lines changed: 2 additions & 1 deletion
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
TEST?=./...
24
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
35
PKG_NAME=oci
@@ -124,4 +126,3 @@ zip:
124126
tar -czvf solaris_amd64.tar.gz solaris_amd64
125127

126128
.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile website website-test
127-

README.md

Lines changed: 1 addition & 1 deletion

docs/examples/audit/main.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
/*
24
* This example shows how to use the audit_configuration Resource to set the event retention period and list events with
35
* the audit_events Data Source.

docs/examples/compute/boot_volume/boot_volume.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_boot_volume" "TFBootVolumeFromSourceBootVolume" {
24
availability_domain = "${oci_core_instance.TFInstance.availability_domain}"
35
compartment_id = "${oci_core_instance.TFInstance.compartment_id}"

docs/examples/compute/boot_volume/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/compute/boot_volume/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/compute/boot_volume/outputs.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
output "bootVolumeFromInstance" {
24
value = ["${oci_core_instance.TFInstance.boot_volume_id}"]
35
}

docs/examples/compute/boot_volume/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
version = ">= 3.3.0"
35
tenancy_ocid = "${var.tenancy_ocid}"

docs/examples/compute/boot_volume/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" {}

0 commit comments

Comments
 (0)