-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from aaronkanzer/ak-remove-lincbrain-cli
Remove lincbrain CLI installation due to dandi CLI handling different APIs
- Loading branch information
Showing
4 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,26 @@ | ||
# Derived from Data On EKS under Apache License 2.0. | ||
# Source: https://github.com/awslabs/data-on-eks/tree/main/ai-ml/jupyterhub | ||
# See LICENSE file in the root directory of this source code or at http://www.apache.org/licenses/LICENSE-2.0.html. | ||
|
||
terraform { | ||
required_version = ">= 1.0.0" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 3.72" | ||
version = ">= 5.76.0" | ||
} | ||
kubernetes = { | ||
source = "hashicorp/kubernetes" | ||
version = ">= 2.10" | ||
version = ">= 2.33.0" | ||
} | ||
helm = { | ||
source = "hashicorp/helm" | ||
version = ">= 2.12.1" | ||
version = ">= 2.16.1" | ||
} | ||
random = { | ||
source = "hashicorp/random" | ||
version = "3.1.0" # Replace with the appropriate version of the random provider | ||
version = ">= 3.6.3" | ||
} | ||
|
||
archive = { | ||
source = "hashicorp/archive" | ||
version = "2.4.0" | ||
} | ||
} | ||
} | ||
} |