Skip to content

Commit

Permalink
Initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-butler-irl committed Apr 12, 2024
1 parent 16aea36 commit 860c22b
Show file tree
Hide file tree
Showing 12 changed files with 193 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Primary owner should be listed first in list of global owners, followed by any secondary owners
* @SirSpidey @ocofaigh
28 changes: 28 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# The settings are inherited from common repository repo-settings (same file name and location)
# You can append settings that are deeply merged with the inherited settings.
#
# When you have installed the GitHub App "repo-settings" in this repository,
# any change of this settings.yml file is detected by the GitHub App and
# the settings of this repository are updated immediately.
#
_extends: repo-settings:.github/stack-settings.yml

# repo-specific settings
#
repository:
# See https://terraform-ibm-modules.github.io/documentation/#/implementation-guidelines?id=module-names-and-descriptions

# By changing this field, you rename the repository.

# Uncomment this name property and set the name to the current repo name.
# name: ""

# The description is displayed under the repository name on the
# organization page and in the 'About' section of the repository.

# Uncomment this description property
# and update the description to the current repo description.
# description: ""

# Use a comma-separated list of topics to set on the repo (ensure not to use any caps in the topic string).
topics: terraform, ibm-cloud, terraform-stack, ibm-cloud-stack
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO: Add CI workflow
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "common-dev-assets"]
path = common-dev-assets
url = [email protected]:terraform-ibm-modules/common-dev-assets.git
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
85 changes: 85 additions & 0 deletions .secrets.baseline
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"exclude": {
"files": "^.secrets.baseline$",
"lines": null
},
"generated_at": "2024-04-12T10:58:17Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
},
{
"name": "ArtifactoryDetector"
},
{
"name": "AzureStorageKeyDetector"
},
{
"base64_limit": 4.5,
"name": "Base64HighEntropyString"
},
{
"name": "BasicAuthDetector"
},
{
"name": "BoxDetector"
},
{
"name": "CloudantDetector"
},
{
"ghe_instance": "github.ibm.com",
"name": "GheDetector"
},
{
"name": "GitHubTokenDetector"
},
{
"hex_limit": 3,
"name": "HexHighEntropyString"
},
{
"name": "IbmCloudIamDetector"
},
{
"name": "IbmCosHmacDetector"
},
{
"name": "JwtTokenDetector"
},
{
"keyword_exclude": null,
"name": "KeywordDetector"
},
{
"name": "MailchimpDetector"
},
{
"name": "NpmDetector"
},
{
"name": "PrivateKeyDetector"
},
{
"name": "SlackDetector"
},
{
"name": "SoftlayerDetector"
},
{
"name": "SquareOAuthDetector"
},
{
"name": "StripeDetector"
},
{
"name": "TwilioKeyDetector"
}
],
"results": {},
"version": "0.13.1+ibm.62.dss",
"word_list": {
"file": null,
"hash": null
}
}
1 change: 1 addition & 0 deletions Makefile
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# stack-ibm-template
# stack-ibm-template
1 change: 1 addition & 0 deletions ci
1 change: 1 addition & 0 deletions common-dev-assets
Submodule common-dev-assets added at a55995
20 changes: 20 additions & 0 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"products": [
{
"label": "stack-template",
"name": "stack-template",
"version": "0.0.1",
"product_kind": "solution",
"tags": [
"converged_infra"
],
"offering_icon_url": "https://globalcatalog.cloud.ibm.com/api/v1/1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc/artifacts/solution.svg",
"flavors": [
{
"compliance": {},
"architecture": {}
}
]
}
]
}
49 changes: 49 additions & 0 deletions stack_definition.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"inputs": [],
"members": [
{
"inputs": [
{
"name": "resource_group",
"value": "__NULL__"
},
{
"name": "resource_tags",
"value": "[]"
},
{
"name": "testing",
"value": "__NULL__"
},
{
"name": "prefix",
"value": "mock"
}
],
"name": "primary-da",
"version_locator": "7df1e4ca-d54c-4fd0-82ce-3d13247308cd.a8887a40-ff3f-4ee8-bcfe-bcfd55360074"
},
{
"inputs": [
{
"name": "resource_group",
"value": "ref:/configs/primary-da/outputs/resource_group"
},
{
"name": "resource_tags",
"value": "[]"
},
{
"name": "testing",
"value": "__NULL__"
},
{
"name": "prefix",
"value": "secondary"
}
],
"name": "secondary-da",
"version_locator": "7df1e4ca-d54c-4fd0-82ce-3d13247308cd.a8887a40-ff3f-4ee8-bcfe-bcfd55360074"
}
]
}

0 comments on commit 860c22b

Please sign in to comment.