-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(fix rendering): fix rendering, clean up code, add tui title, and…
… move everything into run command
- Loading branch information
1 parent
2f59018
commit e2a3b90
Showing
11 changed files
with
183 additions
and
123 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
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
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
data "cloudsmith_organization" "my_organization" { | ||
slug = var.cloudsmith_org | ||
} | ||
|
||
resource "cloudsmith_repository" "my_repository" { | ||
description = "A certifiably-awesome private package repository" | ||
name = "My Repository" | ||
namespace = data.cloudsmith_organization.my_organization.slug_perm | ||
slug = "test-repo" | ||
} | ||
|
||
data "aws_ami" "ubuntu" { | ||
most_recent = true | ||
|
||
filter { | ||
name = "name" | ||
values = ["ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*"] | ||
} | ||
|
||
filter { | ||
name = "virtualization-type" | ||
values = ["hvm"] | ||
} | ||
|
||
owners = ["099720109477"] # Canonical | ||
} | ||
|
||
resource "aws_instance" "web" { | ||
ami = data.aws_ami.ubuntu.id | ||
instance_type = "t3.micro" | ||
|
||
tags = { | ||
Name = "HelloWorld" | ||
} | ||
} | ||
|
||
resource "google_healthcare_dataset" "dataset" { | ||
location = "us-central1" | ||
name = "my-dataset" | ||
} | ||
|
||
resource "google_healthcare_consent_store" "my-consent" { | ||
dataset = google_healthcare_dataset.dataset.id | ||
name = var.consent_store_name | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
output "ubuntu_ami" { | ||
value = data.aws_ami.ubuntu.id | ||
description = "Ubuntu AWS AMI ID" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
variable "cloudsmith_org" { | ||
type = string | ||
description = "Cloudsmith test org" | ||
default = "test" | ||
} | ||
|
||
variable "consent_store_name" { | ||
type = string | ||
description = "Consent store name for GCP" | ||
default = "my-consent-store" | ||
} | ||
|
Oops, something went wrong.