Skip to content

Commit

Permalink
Merge pull request #2 from oracle-quickstart/kevindl30-patch-1
Browse files Browse the repository at this point in the history
Kevindl30 patch 1
  • Loading branch information
cpoczatek committed Dec 8, 2021
2 parents 2b91751 + 64489cd commit d64c42d
Show file tree
Hide file tree
Showing 59 changed files with 5,721 additions and 1,625 deletions.
60 changes: 0 additions & 60 deletions .github/workflows/build-simple-orm.yml

This file was deleted.

962 changes: 712 additions & 250 deletions README.md

Large diffs are not rendered by default.

10 changes: 0 additions & 10 deletions build-orm/install.tf

This file was deleted.

43 changes: 0 additions & 43 deletions compute.tf

This file was deleted.

50 changes: 31 additions & 19 deletions data_sources.tf
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
data "oci_identity_availability_domain" "ad" {
compartment_id = var.tenancy_ocid
ad_number = var.availability_domain_number
}

data "oci_core_images" "autonomous_ol7" {
compartment_id = var.compute_compartment_ocid
operating_system = "Oracle Autonomous Linux"
sort_by = "TIMECREATED"
sort_order = "DESC"
state = "AVAILABLE"

# filter restricts to OL 7
filter {
name = "operating_system_version"
values = ["7\\.[0-9]"]
regex = true
}
}
// Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
/*
data "oci_core_services" "all_oci_services" {
filter {
name = "name"
values = ["All .* Services In Oracle Services Network"]
regex = true
}
count = var.create_service_gateway == true ? 1 : 0
}
*/


// Get all availability domains for the region
data "oci_identity_availability_domains" "ads" {
compartment_id = "${var.tenancy_ocid}"
}


/* Enable to gain visibility to updated parameters
data "oci_ocvp_supported_skus" "supported_skus" {
compartment_id = "${var.compartment_ocid}"
}
data "oci_ocvp_supported_vmware_software_versions" "supported_vmware_software_versions" {
compartment_id = "${var.compartment_ocid}"
}
*/

37 changes: 0 additions & 37 deletions image_subscription.tf

This file was deleted.

Binary file added images/cluster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/network.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/nsg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/vcn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 0 additions & 29 deletions locals.tf

This file was deleted.

Loading

0 comments on commit d64c42d

Please sign in to comment.