Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance: Making Temp License Mandatory #11

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ If you would like to override any defaults with the chart, you can do so by pass
|------|-------------|------|---------|:--------:|
| cert_arn | Certificate ARN from AWS ACM | `string` | n/a | yes |
| hostname | Route53 Hosted zone name | `string` | n/a | yes |
| temp_license | Temporary license details | `map(string)` | n/a | yes |
| helm_config | CloudBees CI Helm chart configuration | `any` | `{}` | no |
| manage_via_gitops | Determines if the add-on should be managed via GitOps | `bool` | `false` | no |
| temp_license | Temporary license details | `map(string)` | <pre>{<br> "company": "Example Inc.",<br> "email": "[email protected]",<br> "first_name": "User Name Example",<br> "last_name": "User Last Name Example"<br>}</pre> | no |

### Outputs

Expand Down
14 changes: 14 additions & 0 deletions blueprints/getting-started/v4/.auto.tfvars.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
domain_name = "bp.core.pscbdemos.com" # Required. Domain name for the CloudBees CI instance.

temp_license = { # Required. Temporary license details.
first_name = "Foo"
last_name = "Bar"
email = "[email protected]"
company = "Acme Inc."
}

# tags = { # Optional. Tags for the resources created. Default set to empty. Shared among all.
# "cb:owner" : "professional-services"
# "cb:user" : "crodriguezlopez"
# }

6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,4 @@ variable "cert_arn" {
variable "temp_license" {
description = "Temporary license details"
type = map(string)
default = {
first_name = "User Name Example"
last_name = "User Last Name Example"
email = "[email protected]"
company = "Example Inc."
}
}
Loading