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

feat: [infra-manager] Infrastructure manager supports 1.2.3, 1.3.10, 1.4.7, 1.5.7 versions of Terraform when creating a preview of a deployment #5277

Merged
merged 2 commits into from
Apr 23, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,12 @@ message Deployment {
// applies.
QuotaValidation quota_validation = 23
[(google.api.field_behavior) = OPTIONAL];

// Optional. Arbitrary key-value metadata storage e.g. to help client tools
// identify deployments during automation. See
// https://google.aip.dev/148#annotations for details on format and size
// limitations.
map<string, string> annotations = 24 [(google.api.field_behavior) = OPTIONAL];
}

// TerraformBlueprint describes the source of a Terraform root module which
Expand Down Expand Up @@ -1577,6 +1583,15 @@ message Preview {

// Output only. Location of preview logs in `gs://{bucket}/{object}` format.
string logs = 17 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. The current Terraform version set on the preview.
// It is in the format of "Major.Minor.Patch", for example, "1.3.10".
string tf_version = 18 [(google.api.field_behavior) = OUTPUT_ONLY];

// Optional. The user-specified Terraform version constraint.
// Example: "=1.3.10".
optional string tf_version_constraint = 19
[(google.api.field_behavior) = OPTIONAL];
}

// Ephemeral metadata content describing the state of a preview operation.
Expand Down
21 changes: 21 additions & 0 deletions packages/google-cloud-config/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

121 changes: 120 additions & 1 deletion packages/google-cloud-config/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions packages/google-cloud-config/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading