Skip to content

Commit d8ac363

Browse files
committed
change the URL in the license header to use SSL
Signed-off-by: Ali Mukadam <[email protected]>
1 parent b23a53a commit d8ac363

31 files changed

+31
-31
lines changed

datasources.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
data "oci_identity_availability_domains" "ad_list" {
55
compartment_id = var.oci_base_identity.tenancy_id

examples/db/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
locals {
55
oci_base_identity = {

examples/db/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
module "base" {
55
source = "./modules/base"

examples/db/modules/db/db.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
resource "oci_database_db_system" "test_db_system" {
55
availability_domain = element(var.db_oci_general.ad_names, var.db_oci_general.availability_domain)

examples/db/modules/db/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44

55
locals {

examples/db/modules/db/security.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
# db security checklist
55
resource "oci_core_security_list" "db" {

examples/db/modules/db/subnet.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
resource "oci_core_subnet" "db" {
55
cidr_block = cidrsubnet(var.db_network.vcn_cidr, var.db_network.newbits["db"], var.db_network.subnets["db"])

examples/db/modules/db/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
variable "db_identity" {
55
type = object({

examples/db/terraform.tfvars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
# Keep root variables flat to make it easy for users to fill in
55

examples/db/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2017, 2019, Oracle Corporation and/or affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
# Identity and access parameters
55
variable "api_fingerprint" {

0 commit comments

Comments
 (0)