https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-container-registry
Module to set up the IBM Container Registry, including creating a namespace and upgrading the plan
https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-container-registry
Last synced: about 2 months ago
JSON representation
Module to set up the IBM Container Registry, including creating a namespace and upgrading the plan
- Host: GitHub
- URL: https://github.com/terraform-ibm-modules/terraform-ibm-toolkit-container-registry
- Owner: terraform-ibm-modules
- License: apache-2.0
- Created: 2021-08-04T12:08:11.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-07T20:40:28.000Z (5 months ago)
- Last Synced: 2025-02-04T16:50:53.050Z (3 months ago)
- Language: HCL
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IBM Container Registry module
Module to set up the IBM Container Registry, including creating a namespace and upgrading the plan.
## Software dependencies
The module depends on the following software components:
### Command-line tools
- terraform - v13
- ibmcloud cli### Terraform providers
- None
## Module dependencies
This module makes use of the output from other modules:
- Resource group - github.com/cloud-native-toolkit/terraform-ibm-resource-group
## Example usage
[Refer test cases for more details](test/stages/stage2-container-registry.tf)
```hcl-terraform
module "container_registry" {
source = "github.com/cloud-native-toolkit/terraform-ibm-container-registry.git"resource_group_name = module.resource_group.name
ibmcloud_api_key = var.ibmcloud_api_key
region = var.region
registry_namespace = var.registry_namespace
upgrade_plan = var.upgrade_plan
}
```