Akamai
AppSecMatchTarget
Scopes: Security configuration
Creates a match target associated with a security configuration. Match targets determine which security policy should apply to an API, hostname or path.
Related API Endpoint: /appsec/v1/configs/{configId}/versions/{versionNumber}/match-targets
Output Options
In addition to the arguments above, the following attribute is exported:
match_target_id
. ID of the match target.
Example Usage
using System.IO;
using Pulumi;
using Akamai = Pulumi.Akamai;
class MyStack : Stack
{
public MyStack()
{
var configuration = Output.Create(Akamai.GetAppSecConfiguration.InvokeAsync(new Akamai.GetAppSecConfigurationArgs
{
Name = "Documentation",
}));
var matchTarget = new Akamai.AppSecMatchTarget("matchTarget", new Akamai.AppSecMatchTargetArgs
{
ConfigId = configuration.Apply(configuration => configuration.ConfigId),
MatchTarget = File.ReadAllText($"{path.Module}/match_targets.json"),
});
}
}
package main
import (
"fmt"
"io/ioutil"
"github.com/pulumi/pulumi-akamai/sdk/v2/go/akamai"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func readFileOrPanic(path string) pulumi.StringPtrInput {
data, err := ioutil.ReadFile(path)
if err != nil {
panic(err.Error())
}
return pulumi.String(string(data))
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
configuration, err := akamai.LookupAppSecConfiguration(ctx, &GetAppSecConfigurationArgs{
Name: pulumi.StringRef("Documentation"),
}, nil)
if err != nil {
return err
}
_, err = akamai.NewAppSecMatchTarget(ctx, "matchTarget", &akamai.AppSecMatchTargetArgs{
ConfigId: pulumi.Int(configuration.ConfigId),
MatchTarget: readFileOrPanic(fmt.Sprintf("%v%v", path.Module, "/match_targets.json")),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_akamai as akamai
configuration = akamai.get_app_sec_configuration(name="Documentation")
match_target = akamai.AppSecMatchTarget("matchTarget",
config_id=configuration.config_id,
match_target=(lambda path: open(path).read())(f"{path['module']}/match_targets.json"))
import * as pulumi from "@pulumi/pulumi";
import * as akamai from "@pulumi/akamai";
import * from "fs";
const configuration = akamai.getAppSecConfiguration({
name: "Documentation",
});
const matchTarget = new akamai.AppSecMatchTarget("matchTarget", {
configId: configuration.then(configuration => configuration.configId),
matchTarget: fs.readFileSync(`${path.module}/match_targets.json`),
});
Coming soon!
Create a AppSecMatchTarget Resource
new AppSecMatchTarget(name: string, args: AppSecMatchTargetArgs, opts?: CustomResourceOptions);
@overload
def AppSecMatchTarget(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[int] = None,
match_target: Optional[str] = None)
@overload
def AppSecMatchTarget(resource_name: str,
args: AppSecMatchTargetArgs,
opts: Optional[ResourceOptions] = None)
func NewAppSecMatchTarget(ctx *Context, name string, args AppSecMatchTargetArgs, opts ...ResourceOption) (*AppSecMatchTarget, error)
public AppSecMatchTarget(string name, AppSecMatchTargetArgs args, CustomResourceOptions? opts = null)
public AppSecMatchTarget(String name, AppSecMatchTargetArgs args)
public AppSecMatchTarget(String name, AppSecMatchTargetArgs args, CustomResourceOptions options)
type: akamai:AppSecMatchTarget
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppSecMatchTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AppSecMatchTargetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AppSecMatchTargetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppSecMatchTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppSecMatchTargetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AppSecMatchTarget Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AppSecMatchTarget resource accepts the following input properties:
- Config
Id int . Unique identifier of the security configuration associated with the match target being modified.
- Match
Target string . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- Config
Id int . Unique identifier of the security configuration associated with the match target being modified.
- Match
Target string . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- config
Id Integer . Unique identifier of the security configuration associated with the match target being modified.
- match
Target String . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- config
Id number . Unique identifier of the security configuration associated with the match target being modified.
- match
Target string . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- config_
id int . Unique identifier of the security configuration associated with the match target being modified.
- match_
target str . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- config
Id Number . Unique identifier of the security configuration associated with the match target being modified.
- match
Target String . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
Outputs
All input properties are implicitly available as output properties. Additionally, the AppSecMatchTarget resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Match
Target intId
- Id string
The provider-assigned unique ID for this managed resource.
- Match
Target intId
- id String
The provider-assigned unique ID for this managed resource.
- match
Target IntegerId
- id string
The provider-assigned unique ID for this managed resource.
- match
Target numberId
- id str
The provider-assigned unique ID for this managed resource.
- match_
target_ intid
- id String
The provider-assigned unique ID for this managed resource.
- match
Target NumberId
Look up an Existing AppSecMatchTarget Resource
Get an existing AppSecMatchTarget resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AppSecMatchTargetState, opts?: CustomResourceOptions): AppSecMatchTarget
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[int] = None,
match_target: Optional[str] = None,
match_target_id: Optional[int] = None) -> AppSecMatchTarget
func GetAppSecMatchTarget(ctx *Context, name string, id IDInput, state *AppSecMatchTargetState, opts ...ResourceOption) (*AppSecMatchTarget, error)
public static AppSecMatchTarget Get(string name, Input<string> id, AppSecMatchTargetState? state, CustomResourceOptions? opts = null)
public static AppSecMatchTarget get(String name, Output<String> id, AppSecMatchTargetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Config
Id int . Unique identifier of the security configuration associated with the match target being modified.
- Match
Target string . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- Match
Target intId
- Config
Id int . Unique identifier of the security configuration associated with the match target being modified.
- Match
Target string . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- Match
Target intId
- config
Id Integer . Unique identifier of the security configuration associated with the match target being modified.
- match
Target String . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- match
Target IntegerId
- config
Id number . Unique identifier of the security configuration associated with the match target being modified.
- match
Target string . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- match
Target numberId
- config_
id int . Unique identifier of the security configuration associated with the match target being modified.
- match_
target str . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- match_
target_ intid
- config
Id Number . Unique identifier of the security configuration associated with the match target being modified.
- match
Target String . Path to a JSON file containing one or more match target definitions. You can find a sample match target JSON file in the Create a match target section of the Application Security API documentation.
- match
Target NumberId
Package Details
- Repository
- https://github.com/pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
akamai
Terraform Provider.