Skip to content

Commit

Permalink
misc: made service account email field sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
sheensantoscapadngan committed Jan 30, 2025
1 parent 3f649dd commit f0b5614
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/resources/app_connection_gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ resource "infisical_app_connection_gcp" "app-connection-gcp" {
### Optional

- `description` (String) An optional description for the GCP App Connection.
- `service_account_email` (String) The service account email to connect with GCP. The service account ID (the part of the email before '@') must be suffixed with the first two sections of your organization ID e.g. [email protected]. For more details, refer to the documentation here https://infisical.com/docs/integrations/app-connections/gcp#configure-service-account-for-infisical
- `service_account_email` (String, Sensitive) The service account email to connect with GCP. The service account ID (the part of the email before '@') must be suffixed with the first two sections of your organization ID e.g. [email protected]. For more details, refer to the documentation here https://infisical.com/docs/integrations/app-connections/gcp#configure-service-account-for-infisical

### Read-Only

Expand Down
1 change: 1 addition & 0 deletions internal/provider/resource/app_connection_gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ func (r *AppConnectionGcpResource) Schema(_ context.Context, _ resource.SchemaRe
"service_account_email": schema.StringAttribute{
Optional: true,
Description: "The service account email to connect with GCP. The service account ID (the part of the email before '@') must be suffixed with the first two sections of your organization ID e.g. [email protected]. For more details, refer to the documentation here https://infisical.com/docs/integrations/app-connections/gcp#configure-service-account-for-infisical",
Sensitive: true,
},
"name": schema.StringAttribute{
Required: true,
Expand Down

0 comments on commit f0b5614

Please sign in to comment.