Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.appengine.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.appengine.FirewallRuleArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A single firewall rule that is evaluated against incoming traffic
* and provides an action to take on matched requests.
* To get more information about FirewallRule, see:
* * [API documentation](https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.firewall.ingressRules)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/appengine/docs/standard/python/creating-firewalls#creating_firewall_rules)
* ## Example Usage
* ### App Engine Firewall Rule Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const myProject = new gcp.organizations.Project("my_project", {
* name: "tf-test-project",
* projectId: "ae-project",
* orgId: "123456789",
* billingAccount: "000000-0000000-0000000-000000",
* });
* const app = new gcp.appengine.Application("app", {
* project: myProject.projectId,
* locationId: "us-central",
* });
* const rule = new gcp.appengine.FirewallRule("rule", {
* project: app.project,
* priority: 1000,
* action: "ALLOW",
* sourceRange: "*",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* my_project = gcp.organizations.Project("my_project",
* name="tf-test-project",
* project_id="ae-project",
* org_id="123456789",
* billing_account="000000-0000000-0000000-000000")
* app = gcp.appengine.Application("app",
* project=my_project.project_id,
* location_id="us-central")
* rule = gcp.appengine.FirewallRule("rule",
* project=app.project,
* priority=1000,
* action="ALLOW",
* source_range="*")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var myProject = new Gcp.Organizations.Project("my_project", new()
* {
* Name = "tf-test-project",
* ProjectId = "ae-project",
* OrgId = "123456789",
* BillingAccount = "000000-0000000-0000000-000000",
* });
* var app = new Gcp.AppEngine.Application("app", new()
* {
* Project = myProject.ProjectId,
* LocationId = "us-central",
* });
* var rule = new Gcp.AppEngine.FirewallRule("rule", new()
* {
* Project = app.Project,
* Priority = 1000,
* Action = "ALLOW",
* SourceRange = "*",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/appengine"
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* myProject, err := organizations.NewProject(ctx, "my_project", &organizations.ProjectArgs{
* Name: pulumi.String("tf-test-project"),
* ProjectId: pulumi.String("ae-project"),
* OrgId: pulumi.String("123456789"),
* BillingAccount: pulumi.String("000000-0000000-0000000-000000"),
* })
* if err != nil {
* return err
* }
* app, err := appengine.NewApplication(ctx, "app", &appengine.ApplicationArgs{
* Project: myProject.ProjectId,
* LocationId: pulumi.String("us-central"),
* })
* if err != nil {
* return err
* }
* _, err = appengine.NewFirewallRule(ctx, "rule", &appengine.FirewallRuleArgs{
* Project: app.Project,
* Priority: pulumi.Int(1000),
* Action: pulumi.String("ALLOW"),
* SourceRange: pulumi.String("*"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.organizations.Project;
* import com.pulumi.gcp.organizations.ProjectArgs;
* import com.pulumi.gcp.appengine.Application;
* import com.pulumi.gcp.appengine.ApplicationArgs;
* import com.pulumi.gcp.appengine.FirewallRule;
* import com.pulumi.gcp.appengine.FirewallRuleArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var myProject = new Project("myProject", ProjectArgs.builder()
* .name("tf-test-project")
* .projectId("ae-project")
* .orgId("123456789")
* .billingAccount("000000-0000000-0000000-000000")
* .build());
* var app = new Application("app", ApplicationArgs.builder()
* .project(myProject.projectId())
* .locationId("us-central")
* .build());
* var rule = new FirewallRule("rule", FirewallRuleArgs.builder()
* .project(app.project())
* .priority(1000)
* .action("ALLOW")
* .sourceRange("*")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* myProject:
* type: gcp:organizations:Project
* name: my_project
* properties:
* name: tf-test-project
* projectId: ae-project
* orgId: '123456789'
* billingAccount: 000000-0000000-0000000-000000
* app:
* type: gcp:appengine:Application
* properties:
* project: ${myProject.projectId}
* locationId: us-central
* rule:
* type: gcp:appengine:FirewallRule
* properties:
* project: ${app.project}
* priority: 1000
* action: ALLOW
* sourceRange: '*'
* ```
*
* ## Import
* FirewallRule can be imported using any of these accepted formats:
* * `apps/{{project}}/firewall/ingressRules/{{priority}}`
* * `{{project}}/{{priority}}`
* * `{{priority}}`
* When using the `pulumi import` command, FirewallRule can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:appengine/firewallRule:FirewallRule default apps/{{project}}/firewall/ingressRules/{{priority}}
* ```
* ```sh
* $ pulumi import gcp:appengine/firewallRule:FirewallRule default {{project}}/{{priority}}
* ```
* ```sh
* $ pulumi import gcp:appengine/firewallRule:FirewallRule default {{priority}}
* ```
* @property action The action to take if this rule matches.
* Possible values are: `UNSPECIFIED_ACTION`, `ALLOW`, `DENY`.
* - - -
* @property description An optional string description of this rule.
* @property priority A positive integer that defines the order of rule evaluation.
* Rules with the lowest priority are evaluated first.
* A default rule at priority Int32.MaxValue matches all IPv4 and
* IPv6 traffic when no previous rule matches. Only the action of
* this rule can be modified by the user.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property sourceRange IP address or range, defined using CIDR notation, of requests that this rule applies to.
*/
public data class FirewallRuleArgs(
public val action: Output? = null,
public val description: Output? = null,
public val priority: Output? = null,
public val project: Output? = null,
public val sourceRange: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.appengine.FirewallRuleArgs =
com.pulumi.gcp.appengine.FirewallRuleArgs.builder()
.action(action?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.priority(priority?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.sourceRange(sourceRange?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FirewallRuleArgs].
*/
@PulumiTagMarker
public class FirewallRuleArgsBuilder internal constructor() {
private var action: Output? = null
private var description: Output? = null
private var priority: Output? = null
private var project: Output? = null
private var sourceRange: Output? = null
/**
* @param value The action to take if this rule matches.
* Possible values are: `UNSPECIFIED_ACTION`, `ALLOW`, `DENY`.
* - - -
*/
@JvmName("vjnkdpovmyjhdcqh")
public suspend fun action(`value`: Output) {
this.action = value
}
/**
* @param value An optional string description of this rule.
*/
@JvmName("bftqlbuotmlstkcw")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value A positive integer that defines the order of rule evaluation.
* Rules with the lowest priority are evaluated first.
* A default rule at priority Int32.MaxValue matches all IPv4 and
* IPv6 traffic when no previous rule matches. Only the action of
* this rule can be modified by the user.
*/
@JvmName("nsyqiotglfoilfws")
public suspend fun priority(`value`: Output) {
this.priority = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("finpmhncbxwqmbqy")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value IP address or range, defined using CIDR notation, of requests that this rule applies to.
*/
@JvmName("evhfgbxxnxjtvhab")
public suspend fun sourceRange(`value`: Output) {
this.sourceRange = value
}
/**
* @param value The action to take if this rule matches.
* Possible values are: `UNSPECIFIED_ACTION`, `ALLOW`, `DENY`.
* - - -
*/
@JvmName("lctfpakmxugyerxf")
public suspend fun action(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.action = mapped
}
/**
* @param value An optional string description of this rule.
*/
@JvmName("dladqubycgdwqvvr")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value A positive integer that defines the order of rule evaluation.
* Rules with the lowest priority are evaluated first.
* A default rule at priority Int32.MaxValue matches all IPv4 and
* IPv6 traffic when no previous rule matches. Only the action of
* this rule can be modified by the user.
*/
@JvmName("wetmgxlbldyssdah")
public suspend fun priority(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.priority = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("ulsrlsmiqdljrqed")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value IP address or range, defined using CIDR notation, of requests that this rule applies to.
*/
@JvmName("cnrcknhbrncrbtyc")
public suspend fun sourceRange(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sourceRange = mapped
}
internal fun build(): FirewallRuleArgs = FirewallRuleArgs(
action = action,
description = description,
priority = priority,
project = project,
sourceRange = sourceRange,
)
}